{% 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 "Preflight Checks" %}{% endblock %} {% block content %}
{% trans "Name" %} | {% trans "Description" %} | {% trans "Status" %} |
---|---|---|
{{ check.name }} | {{ check.description }} | {% if check.passed %} ☑ {% else %} ☒ {% if check.exception %} {% endif %} {% endif %} |
{% trans "Library/Package" %} | {% trans "Version" %} |
---|---|
{{ item.name }} | {{ item.version }} |
{% trans "Name" %} | {% trans "Description" %} | {% trans "Conditions" %} | {% trans "Status" %} |
---|---|---|---|
{{ type }} | |||
{{ switch.name }} | {{ switch.description }} |
{% if switch.conditions %}
|
{{ switch.status_text }} | {% endfor %}
No switches.
{% endif %} {% for name, cache in caches.items %}No caches.
{% endfor %}View generated at: {{ now }}
{% endblock %}