{% extends "base/base.html" %} {% load i18n %} {% 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 %} {% blocktrans with link_name=manager.name|add:':'|add:link.name %}{{ link_name }} is not a valid url{% endblocktrans %} {% endif %} {% endfor %} {% 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|safe }}
{{ cell }}
{% else %} {% if request.META.QUERY_STRING %}
{% blocktrans with vnp=opts.verbose_name_plural %}No {{ vnp }} match your search{% endblocktrans %}
{% else %} {% block list_empty %}
{% blocktrans with vnp=opts.verbose_name_plural %}Sorry, there are no {{ vnp }} at this time.{% endblocktrans %}
{% 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 %}
{% if manager.views.detail %} {{ object }} {% else %} {{ object }} {% endif %}
{% else %} {% if request.META.QUERY_STRING %}
{% blocktrans with vnp=opts.verbose_name_plural %}No {{ vnp }} match your search{% endblocktrans %}
{% else %}
{% blocktrans with vnp=opts.verbose_name_plural %}Sorry, there are no {{ vnp }} at this time.{% endblocktrans %}
{% 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 %}