{% extends "misago/admin/generic/base.html" %} {% load i18n %} {% block title %} {{ active_link.name }} | {{ block.super }} {% endblock title%} {% block view %}
{% if paginator or order_by or search_form or mass_actions %}
{% if paginator %} {% include "misago/admin/generic/paginator.html" %} {% endif%} {% if order_by %} {% include "misago/admin/generic/order_by.html" %} {% endif %} {% if search_form %} {% include "misago/admin/generic/search_form.html" %} {% endif %} {% if mass_actions %} {% include "misago/admin/generic/mass_actions.html" %} {% endif %}
{% endif %} {% block table-header %}{% endblock table-header %} {% if mass_actions %} {% endif %} {% block table-items %} {% for item in items %} {% block table-row %}{% endblock table-row %} {% if mass_actions %} {% endif %} {% empty %} {% block emptylist %}{% endblock emptylist %} {% endfor %} {% endblock table-items %}
 
{% if paginator %}
{% include "misago/admin/generic/paginator.html" %}
{% endif %}
{% endblock view %} {% block content %} {{ block.super }} {% if search_form %} {% endif %} {% endblock content%} {% block javascripts %} {% if mass_actions %} {% endif %} {% endblock javascripts %}