Spaces:
Sleeping
Sleeping
File size: 192 Bytes
2e53f8d |
1 2 3 4 5 6 7 8 |
{% load i18n %}
<h2>{% translate "Summary" %}</h2>
<ul>
{% for model_name, object_count in model_count %}
<li>{{ model_name|capfirst }}: {{ object_count }}</li>
{% endfor %}
</ul>
|