From 7787eac08ed15532ff75bef7363c64c9e2f82a1f Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Wed, 27 Aug 2025 16:07:43 -0400 Subject: [PATCH] Fixes #20154: Restore missing changelog_message field on several forms --- netbox/templates/dcim/device_edit.html | 5 +++++ netbox/templates/dcim/htmx/cable_edit.html | 15 +++++++++------ netbox/templates/ipam/vlan_edit.html | 5 +++++ 3 files changed, 19 insertions(+), 6 deletions(-) diff --git a/netbox/templates/dcim/device_edit.html b/netbox/templates/dcim/device_edit.html index 8ae98c201..7b010cb63 100644 --- a/netbox/templates/dcim/device_edit.html +++ b/netbox/templates/dcim/device_edit.html @@ -117,4 +117,9 @@ {% render_field form.comments %} + {# Meta fields #} +
+ {% render_field form.changelog_message %} +
+ {% endblock %} diff --git a/netbox/templates/dcim/htmx/cable_edit.html b/netbox/templates/dcim/htmx/cable_edit.html index 46a6c4e58..63e32f570 100644 --- a/netbox/templates/dcim/htmx/cable_edit.html +++ b/netbox/templates/dcim/htmx/cable_edit.html @@ -87,9 +87,12 @@ {% endif %} -{% if form.comments %} -
-

{% trans "Comments" %}

- {% render_field form.comments %} -
-{% endif %} +
+

{% trans "Comments" %}

+ {% render_field form.comments %} +
+ +{# Meta fields #} +
+ {% render_field form.changelog_message %} +
diff --git a/netbox/templates/ipam/vlan_edit.html b/netbox/templates/ipam/vlan_edit.html index 53f5e02c4..b6c21f972 100644 --- a/netbox/templates/ipam/vlan_edit.html +++ b/netbox/templates/ipam/vlan_edit.html @@ -77,4 +77,9 @@
{% render_field form.comments %}
+ + {# Meta fields #} +
+ {% render_field form.changelog_message %} +
{% endblock %}