prefix_ipaddresses.html 471 B

123456789101112
  1. {% extends '_base.html' %}
  2. {% block title %}{{ prefix }} - IP Addresses{% endblock %}
  3. {% block content %}
  4. {% include 'ipam/inc/prefix_header.html' with active_tab='ip-addresses' %}
  5. <div class="row">
  6. <div class="col-md-12">
  7. {% include 'utilities/obj_table.html' with table=ip_table table_template='panel_table.html' heading='IP Addresses' bulk_edit_url='ipam:ipaddress_bulk_edit' bulk_delete_url='ipam:ipaddress_bulk_delete' %}
  8. </div>
  9. </div>
  10. {% endblock %}