{% extends preflight_base_template %} {# Copyright 2010 Canonical Ltd. This software is licensed under the #} {# GNU Affero General Public License version 3 (see the file LICENSE). #} {% load i18n %} {% block title %}{% trans "Application Pre-Flight Checks" %}{% endblock %} {% block content %}

{% trans "Pre-flight Applications Checks" %}

{% for application in applications %}

{{ application.name }}

{% for check in application.checks %} {% endfor %}
{% trans "Name" %} {% trans "Description" %} {% trans "Status" %}
{{ check.name }} {{ check.description }} {% if check.passed %} {% else %} {% endif %}
{% endfor %}

{% trans "Versions" %}

{% for item in versions %} {% endfor %}
{% trans "Library/Package" %} {% trans "Version" %}
{{ item.name }} {{ item.version }}

{% trans "Settings" %}

{% for setting in settings %}
{{ setting.name }}
{{ setting.value }}
{% if setting.location %}
Location: {{ setting.location}}
{% endif %} {% endfor %}

View generated at: {{ now }}

{% endblock %}