{# STATUS: counters #}
{% for stat in status.user_stats %}
{% endfor %}
{# STATUS: checks #}
{% if user.is_superuser %}
{% endif %}
{% if stat.last %}Latest:
{{ stat.last|truncatechars:22 }}{% else %}-{% endif %}
{% glyphicon 'circle-arrow-right' %}
{% glyphicon 'tag' %}
9cms version
{{ status.version }}
{% glyphicon 'cog' %}
Updates
{% if status.updates %}
{% glyphicon 'remove' %}
{% glyphicon 'circle-arrow-down' %}
{% else %}
{% glyphicon 'ok' %}
{% endif %}
{% glyphicon 'th-list' %}
Django check
{% if status.django_check.stderr %}
{% glyphicon 'remove' %}
{% glyphicon 'circle-arrow-down' %}
{% else %}
{% glyphicon 'ok' %}
{% endif %}
{% glyphicon 'road' %}
Database migrations
{% if status.migrations %}
{% glyphicon 'remove' %}
{% glyphicon 'circle-arrow-down' %}
{% else %}
{% glyphicon 'ok' %}
{% endif %}
{% glyphicon 'picture' %}
Image library
{% if status.imagemagick %}
{% glyphicon 'remove' %}
{% else %}
{% glyphicon 'ok' %}
{% endif %}
{# STATUS: additional information #}
{% if status.updates and user.is_superuser %}
{% endif %}
{% if status.django_check.stderr and user.is_superuser %}
{% endif %}
{% if status.migrations and user.is_superuser %}
{% endif %}
{# STATUS: models #}
{% for app in app_list %}
{% for model in app.models %}
{% empty %}
{% for package in status.packages %}
{% cycle 'row' '' as row silent %}
{% if row %}
{% for perm in status.permissions.perms %}
{% endif %}
Site updates
{{ status.updates|join:'
' }}
' }}
Django check report
{{ status.django_check.stderr|linebreaks }}
Database migrations
{# #}
{#
#}
{{ status.migrations|join:' |
' }} |
{{ status.migrations|join:'
' }}
{% include "admin/bootstrapped_extra/app_name.html" %}
{% render_app_description app %}
{% if model.admin_url %}
{{ model.name }}
{% else %}
{{ model.name }}
{% endif %}
{% if model.add_url or model.admin_url%}
{% if model.add_url %}
{% trans 'Add' %}
{% endif %}
{% if model.admin_url %}
{% trans 'Change' %}
{% endif %}
{% endif %}
|
---|
{% trans "You don't have permission to edit anything." %}
{% endfor %} {# STATUS: additional information below #} {% if user.is_superuser %}Packages
{{ package }} | {% if not row %}
Permission check
{{ perm.0 }} | {% glyphicon perm.1|yesno:'ok,remove,minus' %} |