{% extends "base.html" %} {% load static %} {% load stricter_templates %} {% load humanize %} {% block title %}Model Counts ยท {{ site_title }}{% endblock %} {% block content %}

Model Counts

{% for app_name, model_counts in counts|items %}

{{ app_name|capfirst }}

{% for key, annotated_count in model_counts|items %}
{{ key }}
{{ annotated_count.count|intcomma }}
{% if annotated_count.timestamp %}cached {{ annotated_count.timestamp|date:"G:i T" }}{% else %} {% endif %}
 
{% endfor %}
{% endfor %}
{% endblock %}