{% extends 'base/layout.html' %} {% load get_status %} {% load helpers %} {% load render_table from django_tables2 %} {% block header %} {{ block.super }} {% 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 %} {# General stats #}
{% for section, items in stats %}
{{ section }}
{% for item in items %} {% if item.count %}
{{ item.label }}

{{ item.count }}

{% endif %} {% endfor %}
{% endfor %}
{# Changelog #} {% if perms.extras.view_objectchange %}
Change Log
{% include 'inc/responsive_table.html' with table=changelog_table %}
{% endif %} {% endblock content %}