{% extends "base.html" %} {% comment %} # SPDX-License-Identifier: AGPL-3.0-or-later {% endcomment %} {% load bootstrap %} {% load i18n %} {% load static %} {% block content %} {% include "app-header.html" with setup=True %} {% include "toolbar.html" %} {% if setup_state.value == 'up-to-date' %}
{% trans "Application installed." %}
{% elif not operations %}

{% if setup_state.value == 'needs-setup' %} {% blocktrans trimmed %} Install this application? {% endblocktrans %} {% elif setup_state.value == 'needs-update' %} {% blocktrans trimmed %} This application needs an update. Update now? {% endblocktrans %} {% endif %}

{% csrf_token %} {% if has_unavailable_packages %} {% elif package_conflicts and package_conflicts_action.value != 'ignore' %} {% endif %}
{% else %} {% include "operations.html" %} {% endif %} {% endblock %}