mptt_change_list.html 511 B

12345678910111213141516
  1. {% extends "admin/change_list.html" %}
  2. {% load admin_list i18n mptt_admin %}
  3. {% block result_list %}
  4. {% mptt_result_list cl %}
  5. {% if cl.result_count %}
  6. <div class="changelist-footer background-form">
  7. {% if action_form and cl.show_admin_actions and actions_on_top or actions_on_bottom %}{% admin_actions %}{% endif %}
  8. <div class="fr">
  9. {% block pagination %}{% pagination cl %}{% endblock %}
  10. </div>
  11. </div>
  12. {% endif %}
  13. {% endblock %}