interfaces.html 506 B

1234567891011121314151617181920
  1. {% extends 'ipam/vlan/base.html' %}
  2. {% load helpers %}
  3. {% block content %}
  4. {% include 'inc/table_controls_htmx.html' with table_modal="VLANDevicesTable_config" %}
  5. <form method="post">
  6. {% csrf_token %}
  7. <div class="card">
  8. <div class="card-body htmx-container table-responsive" id="object_list">
  9. {% include 'htmx/table.html' %}
  10. </div>
  11. </div>
  12. </form>
  13. {% endblock content %}
  14. {% block modals %}
  15. {{ block.super }}
  16. {% table_config_form table %}
  17. {% endblock modals %}