mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-11 02:49:35 -06:00
8 lines
157 B
HTML
8 lines
157 B
HTML
{% load form_helpers %}
|
|
|
|
{% for field in form %}
|
|
{% if field.name in form.custom_fields %}
|
|
{% render_field field %}
|
|
{% endif %}
|
|
{% endfor %}
|