vrf_list.html 603 B

123456789101112131415161718192021
  1. {% extends '_base.html' %}
  2. {% load buttons %}
  3. {% block content %}
  4. <div class="pull-right noprint">
  5. {% if perms.ipam.add_vrf %}
  6. {% add_button 'ipam:vrf_add' %}
  7. {% import_button 'ipam:vrf_import' %}
  8. {% endif %}
  9. {% export_button content_type %}
  10. </div>
  11. <h1>{% block title %}VRFs{% endblock %}</h1>
  12. <div class="row">
  13. <div class="col-md-9">
  14. {% include 'utilities/obj_table.html' with bulk_edit_url='ipam:vrf_bulk_edit' bulk_delete_url='ipam:vrf_bulk_delete' %}
  15. </div>
  16. <div class="col-md-3 noprint">
  17. {% include 'inc/search_panel.html' %}
  18. </div>
  19. </div>
  20. {% endblock %}