ipaddress_list.html 644 B

12345678910111213141516171819202122
  1. {% extends '_base.html' %}
  2. {% load buttons %}
  3. {% load helpers %}
  4. {% block content %}
  5. <div class="pull-right">
  6. {% if perms.ipam.add_ipaddress %}
  7. {% add_button 'ipam:ipaddress_add' %}
  8. {% import_button 'ipam:ipaddress_import' %}
  9. {% endif %}
  10. {% export_button content_type %}
  11. </div>
  12. <h1>{% block title %}IP Addresses{% endblock %}</h1>
  13. <div class="row">
  14. <div class="col-md-9">
  15. {% include 'utilities/obj_table.html' with bulk_edit_url='ipam:ipaddress_bulk_edit' bulk_delete_url='ipam:ipaddress_bulk_delete' %}
  16. </div>
  17. <div class="col-md-3">
  18. {% include 'inc/search_panel.html' %}
  19. </div>
  20. </div>
  21. {% endblock %}