ipaddress_list.html 899 B

123456789101112131415161718192021222324252627282930
  1. {% extends '_base.html' %}
  2. {% load render_table from django_tables2 %}
  3. {% load helpers %}
  4. {% block title %}IP Addresses{% endblock %}
  5. {% block content %}
  6. <div class="pull-right">
  7. {% if perms.ipam.add_ipaddress %}
  8. <a href="{% url 'ipam:ipaddress_add' %}" class="btn btn-primary">
  9. <span class="fa fa-plus" aria-hidden="true"></span>
  10. Add an IP
  11. </a>
  12. <a href="{% url 'ipam:ipaddress_import' %}" class="btn btn-info">
  13. <span class="fa fa-download" aria-hidden="true"></span>
  14. Import IPs
  15. </a>
  16. {% endif %}
  17. {% include 'inc/export_button.html' with obj_type='IPs' %}
  18. </div>
  19. <h1>IP Addresses</h1>
  20. <div class="row">
  21. <div class="col-md-9">
  22. {% include 'utilities/obj_table.html' with bulk_edit_url='ipam:ipaddress_bulk_edit' bulk_delete_url='ipam:ipaddress_bulk_delete' %}
  23. </div>
  24. <div class="col-md-3">
  25. {% include 'inc/search_panel.html' %}
  26. </div>
  27. </div>
  28. {% endblock %}