devicerole_list.html 528 B

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