{% extends "admin/base_site.html" %} {% load i18n static dashub %} {% block bodyclass %}{{ block.super }} dashboard{% endblock %} {% block content_title %} {% trans 'Dashboard' %} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %} {% get_analytics_data as analytics %} {% get_side_menu using="app_list" as dashboard_list %}
Total Apps

{{ analytics.total_apps|default:"0" }}

Total Models

{{ analytics.total_models|default:"0" }}

Total Records

{{ analytics.total_records|default:"0" }}

{% if analytics.series %}
Growth Trends
Activity Distribution
{% endif %}
{% for app in dashboard_list %}
{{ app.name }}
{% for model in app.models %} {% endfor %}
{% endfor %}
{% if analytics.series %} {{ analytics.series|json_script:"series-data" }} {% endif %} {% endblock %}