prefix_list.html 1.1 KB

123456789101112131415161718192021222324252627
  1. {% extends '_base.html' %}
  2. {% load buttons %}
  3. {% load helpers %}
  4. {% block content %}
  5. <div class="pull-right noprint">
  6. <div class="btn-group" role="group">
  7. <a href="{% url 'ipam:prefix_list' %}{% querystring request expand=None page=1 %}" class="btn btn-default{% if not request.GET.expand %} active{% endif %}">Collapse</a>
  8. <a href="{% url 'ipam:prefix_list' %}{% querystring request expand='on' page=1 %}" class="btn btn-default{% if request.GET.expand %} active{% endif %}">Expand</a>
  9. </div>
  10. {% if perms.ipam.add_prefix %}
  11. {% add_button 'ipam:prefix_add' %}
  12. {% import_button 'ipam:prefix_import' %}
  13. {% endif %}
  14. {% export_button content_type %}
  15. </div>
  16. <h1>{% block title %}Prefixes{% endblock %}</h1>
  17. <div class="row">
  18. <div class="col-md-9">
  19. {% include 'utilities/obj_table.html' with bulk_edit_url='ipam:prefix_bulk_edit' bulk_delete_url='ipam:prefix_bulk_delete' %}
  20. </div>
  21. <div class="col-md-3 noprint">
  22. {% include 'inc/search_panel.html' %}
  23. {% include 'inc/tags_panel.html' %}
  24. </div>
  25. </div>
  26. {% endblock %}