{% extends "admin/base_site.html" %} {% load i18n static dashboard_tags %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block coltype %}colMS{% endblock %} {% block bodyclass %}{{ block.super }} dashboard{% endblock %} {% block breadcrumbs %}{% endblock %} {% block content %}
{% get_dashboard_stats as stats %}

Users Overview

Total Users {{ stats.users.total }}
Active Users {{ stats.users.active }}
Joined Today {{ stats.users.today }}
Joined This Week {{ stats.users.week }}
Joined This Month {{ stats.users.month }}

Push Devices

Total Registered {{ stats.devices.total }}
Active Devices {{ stats.devices.active }}
iOS Devices {{ stats.devices.ios }}
Android Devices {{ stats.devices.android }}

Push Notifications

Total Sent {{ stats.notifications.sent_total }}
Sent Today {{ stats.notifications.sent_today }}
Successful {{ stats.notifications.successful }}
Failed {{ stats.notifications.failed }}

(Notification logging not fully implemented)

{% if app_list %} {% for app in app_list %}
{% for model in app.models %} {% if model.admin_url %} {% else %} {% endif %} {% if model.add_url %} {% else %} {% endif %} {% if model.admin_url and show_changelinks %} {% if model.view_only %} {% else %} {% endif %} {% elif show_changelinks %} {% endif %} {% endfor %}
{{ app.name }}
{{ model.name }}{{ model.name }}{% translate 'Add' %} {% translate 'View' %}{% translate 'Change' %} 
{% endfor %} {% else %}

{% translate 'You don’t have permission to view or edit anything.' %}

{% endif %}
{% endblock %} {% block sidebar %} {% endblock %}