From 224f157b7562845772916104536dbad88fe3df4c Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Wed, 3 Jul 2024 08:31:25 -0400 Subject: [PATCH] Fixes #16807: Fix layout of VLAN edit form when custom fields are present --- netbox/templates/ipam/vlan_edit.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/netbox/templates/ipam/vlan_edit.html b/netbox/templates/ipam/vlan_edit.html index 3ee04980e..2db461dce 100644 --- a/netbox/templates/ipam/vlan_edit.html +++ b/netbox/templates/ipam/vlan_edit.html @@ -53,10 +53,6 @@ {% endwith %} -
- {% render_field form.comments %} -
- {% if form.custom_fields %}
@@ -65,4 +61,8 @@ {% render_custom_fields form %}
{% endif %} + +
+ {% render_field form.comments %} +
{% endblock %}