VoiceAssist / templates /admin /includes /object_delete_summary.html
thejagstudio's picture
Upload 243 files
2e53f8d verified
raw
history blame contribute delete
192 Bytes
{% load i18n %}
<h2>{% translate "Summary" %}</h2>
<ul>
{% for model_name, object_count in model_count %}
<li>{{ model_name|capfirst }}: {{ object_count }}</li>
{% endfor %}
</ul>