{% extends 'base/layout.html' %} {% load get_status %} {% load helpers %} {% load render_table from django_tables2 %} {% block header %} {% if new_release %} {# new_release is set only if the current user is a superuser or staff member #}
{% endif %} {% endblock %} {% block title %}Home{% endblock %} {% block content-wrapper %}
{# General stats #}
{% for section, items, icon in stats %}
{{ section }}
{% for item in items %} {% if not item.disabled %}
{{ item.label }}

{{ item.count }}

{% else %}
  • {{ item.label }}

  • {% endif %} {% endfor %}
    {% endfor %}
    {# Changelog #} {% if perms.extras.view_objectchange %}
    Change Log
    {% render_table changelog_table 'inc/table.html' %}
    {% endif %}
    {% endblock content-wrapper %}