mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
21 lines
567 B
HTML
21 lines
567 B
HTML
![]() |
{% load form_helpers %}
|
||
|
|
||
|
<form hx-post="{{ form_url }}">
|
||
|
{% csrf_token %}
|
||
|
<div class="modal-header">
|
||
|
<h5 class="modal-title">Widget Configuration</h5>
|
||
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
||
|
</div>
|
||
|
<div class="modal-body">
|
||
|
{% block form %}
|
||
|
{% render_form widget_form %}
|
||
|
{% render_form config_form %}
|
||
|
{% endblock form %}
|
||
|
</div>
|
||
|
<div class="modal-footer">
|
||
|
{% block buttons %}
|
||
|
<button class="btn btn-primary">Save</button>
|
||
|
{% endblock buttons %}
|
||
|
</div>
|
||
|
</form>
|