configcontext_list.html 653 B

12345678910111213141516171819
  1. {% extends '_base.html' %}
  2. {% load buttons %}
  3. {% block content %}
  4. <div class="pull-right noprint">
  5. {% if perms.extras.add_configcontext %}
  6. {% add_button 'extras:configcontext_add' %}
  7. {% endif %}
  8. </div>
  9. <h1>{% block title %}Config Contexts{% endblock %}</h1>
  10. <div class="row">
  11. <div class="col-md-9">
  12. {% include 'utilities/obj_table.html' with bulk_edit_url='extras:configcontext_bulk_edit' bulk_delete_url='extras:configcontext_bulk_delete' %}
  13. </div>
  14. <div class="col-md-3 noprint">
  15. {% include 'inc/search_panel.html' %}
  16. </div>
  17. </div>
  18. {% endblock %}