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 %}