{% extends "base/base.html" %} {% load url from future %} {% block header %}{{ opts.verbose_name_plural.title }}{% endblock header %} {% block links %} Create {{ opts.verbose_name.title }} {% endblock %} {% block detail %} {% block list_detail %} {% if object_list %}
{% for object in page_obj.object_list %}
{{ object }}
{% endfor %}
{% else %}
Sorry, there are no {{ opts.verbose_name }} at this time.
{% endif %} {% endblock list_detail %} {% with page_obj as page %} {% include "misc/pagination.html" %} {% endwith %} {% endblock detail %}