ip_ranges.html 500 B

12345678910111213
  1. {% extends 'ipam/prefix/base.html' %}
  2. {% load helpers %}
  3. {% load static %}
  4. {% block content %}
  5. <div class="row">
  6. <div class="col col-md-12">
  7. {% include 'inc/table_controls.html' with table_modal="IPRangeTable_config" %}
  8. {% include 'utilities/obj_table.html' with heading='Child IP Ranges' bulk_edit_url='ipam:iprange_bulk_edit' bulk_delete_url='ipam:iprange_bulk_delete' parent=prefix %}
  9. </div>
  10. </div>
  11. {% table_config_form table table_name="IPRangeTable" %}
  12. {% endblock %}