role_list.html 509 B

123456789101112131415161718
  1. {% extends '_base.html' %}
  2. {% load buttons %}
  3. {% block content %}
  4. <div class="pull-right noprint">
  5. {% if perms.ipam.add_role %}
  6. {% add_button 'ipam:role_add' %}
  7. {% import_button 'ipam:role_import' %}
  8. {% endif %}
  9. {% export_button content_type %}
  10. </div>
  11. <h1>{% block title %}Prefix/VLAN Roles{% endblock %}</h1>
  12. <div class="row">
  13. <div class="col-md-12">
  14. {% include 'utilities/obj_table.html' with bulk_delete_url='ipam:role_bulk_delete' %}
  15. </div>
  16. </div>
  17. {% endblock %}