{% set not_installed = app not in conf['apps'] %} {% if not status %} {% if not_installed: %} {% set status = 'Není nainstalována' %} {% set actions = 'Instalovat' %} {% elif is_service_started(app): %} {% set status = 'Spuštěna' %} {% set actions = 'Zastavit' %} {% else: %} {% set status = 'Zastavena' %} {% set actions = 'Spustit, Odinstalovat' %} {% endif %} {% endif %} {{ app_title }} {{ status|safe }} {{ actions|safe }}