devicerole_list.html 539 B

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