{% extends "base/base.html" %} {% load url from future %} {% load viewgroups_tags humanize %} {% block extrascripts %} {{ block.super }} {% endblock extrascripts %} {% block header %}{{ opts.verbose_name_plural.title }}{% endblock header %} {% block links %} {% for link in manager.links.default_global %} {% url manager.name|add:':'|add:link.name as url %} {% if url %} {{ link.get_title }} {% else %} {{ manager.name|add:':'|add:link.name }} is not a valid url {% endif %} {% endfor %} {% url 'base:create' as create %} {% if create %} Create {{ opts.verbose_name.title }} {% endif %} {% endblock %} {% block detail %} {% if search or filters %} {% endif %} {% if actions %}
{% endif %} {% block list_detail %} {% if headers and rows %} {% if object_list %} {% if actions %} {% endif %} {% for header in headers %} {% endfor %} {% for object, row in rows %} {% if actions %} {% endif %} {% for cell in row %} {% endfor %} {% endfor %}
{{ header }}
{{ cell }}
{% else %} {% if request.META.QUERY_STRING %}
No {{ opts.verbose_name_plural }} match your search
{% else %} {% block list_empty %}
Sorry, there are no {{ opts.verbose_name }} at this time.
{% endblock list_empty %} {% endif %} {% endif %} {% else %} {% if object_list %} {% block list_detail_header %}{% endblock list_detail_header %} {% for object in object_list %} {% block list_detail_item %} {% endblock %} {% endfor %}
{{ object }}
{% else %} {% if request.META.QUERY_STRING %}
No {{ opts.verbose_name_plural }} match your search
{% else %}
Sorry, there are no {{ opts.verbose_name }} at this time.
{% endif %} {% endif %} {% endif %} {% endblock list_detail %} {% if object_list and actions %}
{% endif %} {% with page_obj as page %} {% if page %} {% include "base/pagination.html" %} {% endif %} {% endwith %} {% endblock detail %}