mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
20 lines
481 B
HTML
20 lines
481 B
HTML
{% extends 'ipam/vlan/base.html' %}
|
|
{% load helpers %}
|
|
|
|
{% block content %}
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{% include 'inc/table_controls_htmx.html' with table_modal="VLANVirtualMachinesTable_config" %}
|
|
<div class="card">
|
|
<div class="card-body" id="object_list">
|
|
{% include 'htmx/table.html' %}
|
|
</div>
|
|
</div>
|
|
</form>
|
|
{% endblock content %}
|
|
|
|
{% block modals %}
|
|
{{ block.super }}
|
|
{% table_config_form table %}
|
|
{% endblock modals %}
|