device_list.html 632 B

123456789101112131415161718192021
  1. {% extends '_base.html' %}
  2. {% load buttons %}
  3. {% block content %}
  4. <div class="pull-right noprint">
  5. {% if perms.dcim.add_device %}
  6. {% add_button 'dcim:device_add' %}
  7. {% import_button 'dcim:device_import' %}
  8. {% endif %}
  9. {% export_button content_type %}
  10. </div>
  11. <h1>{% block title %}Devices{% endblock %}</h1>
  12. <div class="row">
  13. <div class="col-md-9">
  14. {% include 'dcim/inc/device_table.html' with bulk_edit_url='dcim:device_bulk_edit' bulk_delete_url='dcim:device_bulk_delete' %}
  15. </div>
  16. <div class="col-md-3 noprint">
  17. {% include 'inc/search_panel.html' %}
  18. </div>
  19. </div>
  20. {% endblock %}