mirror of
https://github.com/netbox-community/netbox.git
synced 2026-03-21 20:18:38 -06:00
Enable dynamic form updates in the prefix bulk add view by introducing HTMX partial rendering. Inherit from PrefixForm to support scope and VLAN fields, and add htmx_template_name for efficient field updates.
23 lines
544 B
HTML
23 lines
544 B
HTML
{% load helpers %}
|
|
{% load form_helpers %}
|
|
{% load i18n %}
|
|
|
|
{% if model_form.fieldsets %}
|
|
{% for fieldset in model_form.fieldsets %}
|
|
{% render_fieldset model_form fieldset %}
|
|
{% endfor %}
|
|
{% else %}
|
|
<div class="field-group my-5">
|
|
{% render_form model_form %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if model_form.custom_fields %}
|
|
<div class="field-group my-5">
|
|
<div class="row">
|
|
<h2 class="col-9 offset-3">{% trans "Custom Fields" %}</h2>
|
|
</div>
|
|
{% render_custom_fields model_form %}
|
|
</div>
|
|
{% endif %}
|