{% extends 'base_dashboard.html' %} {% block title %}{{ verbose_name_plural }} — {{ site_settings.institute_name }}{% endblock %} {% block content %}

{{ verbose_name_plural }}

{{ total }} record{{ total|pluralize }}
{% if can_add %} Add {{ verbose_name }} {% endif %}
{% if has_search %}
{% if q %}Clear{% endif %}
{% endif %}
{% for h in headers %}{% endfor %} {% for row in rows %} {% for cell in row.cells %}{% endfor %} {% empty %} {% endfor %}
{{ h }}Actions
{{ cell }} Edit {% if can_delete %}
{% csrf_token %}
{% endif %}
No records found.
{% if page_obj.has_other_pages %} {% endif %} {% endblock %}