mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-14 12:29:35 -06:00
9 lines
173 B
HTML
9 lines
173 B
HTML
{% load form_helpers %}
|
|
|
|
{% for field in form.hidden_fields %}
|
|
{{ field }}
|
|
{% endfor %}
|
|
{% for field in form.visible_fields %}
|
|
{% render_field field %}
|
|
{% endfor %}
|