{% extends 'generic/object_edit.html' %} {% load form_helpers %} {% block form %} {# Render hidden fields #} {% for field in form.hidden_fields %} {{ field }} {% endfor %} {# Application, name and parent #} {% with fieldset=form.fieldsets.0 %} {% with group=fieldset.0 fields=fieldset.1 %}
{{ group }}
{% for name in fields %} {% with field=form|getfield:name %} {% if not field.field.widget.is_hidden %} {% render_field field %} {% endif %} {% endwith %} {% endfor %}
{% endwith %} {% endwith %} {# Specifications #} {% with fieldset=form.fieldsets.1 %} {% with group=fieldset.0 fields=fieldset.1 %}
{{ group }}
{% include "netbox_data_flows/inc/dataflow_specifications.html" %}
{% endwith %} {% endwith %} {% if form.custom_fields %}
Custom Fields
{% render_custom_fields form %} {% endif %} {% if form.comments %}
Comments
{% render_field form.comments %}
{% endif %} {% endblock %}