<tr data-app="{{ app }}">
    <td>{{ app_title }}</td>
    {% set not_installed = app not in conf['apps'] %}
    <td class="center"><input type="checkbox" class="app-visible"{% if not_installed %} disabled{% elif conf['apps'][app]['visible'] %} checked{% endif %}></td>
    <td class="center"><input type="checkbox" class="app-autostart"{% if not_installed %} disabled{% elif is_service_autostarted(app) %} checked{% endif %}></td>
    {% if install_error %}
    <td>Není nainstalována</td>
    <td><span class="error">{{ session.lang.package_manager_error() }}</span></td>
    {% elif total_size %}
    <td>Stahuje se (<span id="install-progress" data-total="{{ total_size }}">1</span> %)</td>
    <td><div class="loader"></div></td>
    {% elif not_installed %}
    <td>Není nainstalována</td>
    <td><a href="#" class="app-install">Instalovat</a></td>
    {% elif is_service_started(app) %}
    <td><span class="info">Spuštěna</span></td>
    <td><a href="#" class="app-stop">Zastavit</a></td>
    {% else %}
    <td><span class="error">Zastavena</span></td>
    <td><a href="#" class="app-start">Spustit</a>, <a href="#" class="app-uninstall">Odinstalovat</a></td>
    {% endif %}
</tr>