Fixes #16807: Fix layout of VLAN edit form when custom fields are present

This commit is contained in:
Jeremy Stretch 2024-07-03 08:31:25 -04:00
parent 94c2e7582e
commit 224f157b75

View File

@ -53,10 +53,6 @@
{% endwith %}
</div>
<div class="field-group my-5">
{% render_field form.comments %}
</div>
{% if form.custom_fields %}
<div class="field-group my-5">
<div class="row">
@ -65,4 +61,8 @@
{% render_custom_fields form %}
</div>
{% endif %}
<div class="field-group my-5">
{% render_field form.comments %}
</div>
{% endblock %}