diff --git a/netbox/circuits/tables.py b/netbox/circuits/tables.py
index dbd9e6ba1..a425b3ace 100644
--- a/netbox/circuits/tables.py
+++ b/netbox/circuits/tables.py
@@ -6,7 +6,7 @@ from utilities.tables import BaseTable, ToggleColumn
from .models import Circuit, CircuitType, Provider
CIRCUITTYPE_ACTIONS = """
-
+
{% if perms.circuit.change_circuittype %}
diff --git a/netbox/dcim/tables.py b/netbox/dcim/tables.py
index 1f67b93f1..1cc438f38 100644
--- a/netbox/dcim/tables.py
+++ b/netbox/dcim/tables.py
@@ -41,7 +41,7 @@ DEVICE_LINK = """
"""
REGION_ACTIONS = """
-
+
{% if perms.dcim.change_region %}
@@ -50,7 +50,7 @@ REGION_ACTIONS = """
"""
RACKGROUP_ACTIONS = """
-
+
@@ -64,7 +64,7 @@ RACKGROUP_ACTIONS = """
"""
RACKROLE_ACTIONS = """
-
+
{% if perms.dcim.change_rackrole %}
@@ -86,7 +86,7 @@ RACK_DEVICE_COUNT = """
"""
RACKRESERVATION_ACTIONS = """
-
+
{% if perms.dcim.change_rackreservation %}
@@ -95,7 +95,7 @@ RACKRESERVATION_ACTIONS = """
"""
MANUFACTURER_ACTIONS = """
-
+
{% if perms.dcim.change_manufacturer %}
@@ -104,7 +104,7 @@ MANUFACTURER_ACTIONS = """
"""
DEVICEROLE_ACTIONS = """
-
+
{% if perms.dcim.change_devicerole %}
@@ -129,7 +129,7 @@ PLATFORM_VM_COUNT = """
"""
PLATFORM_ACTIONS = """
-
+
{% if perms.dcim.change_platform %}
@@ -166,7 +166,7 @@ UTILIZATION_GRAPH = """
"""
VIRTUALCHASSIS_ACTIONS = """
-
+
{% if perms.dcim.change_virtualchassis %}
diff --git a/netbox/extras/tables.py b/netbox/extras/tables.py
index dca84dfdc..08c5ed471 100644
--- a/netbox/extras/tables.py
+++ b/netbox/extras/tables.py
@@ -5,7 +5,7 @@ from utilities.tables import BaseTable, BooleanColumn, ColorColumn, ToggleColumn
from .models import ConfigContext, ObjectChange, Tag, TaggedItem
TAG_ACTIONS = """
-
+
{% if perms.taggit.change_tag %}
diff --git a/netbox/ipam/tables.py b/netbox/ipam/tables.py
index ad119a907..8f059c652 100644
--- a/netbox/ipam/tables.py
+++ b/netbox/ipam/tables.py
@@ -26,7 +26,7 @@ RIR_UTILIZATION = """
"""
RIR_ACTIONS = """
-
+
{% if perms.ipam.change_rir %}
@@ -48,7 +48,7 @@ ROLE_VLAN_COUNT = """
"""
ROLE_ACTIONS = """
-
+
{% if perms.ipam.change_role %}
@@ -145,7 +145,7 @@ VLAN_ROLE_LINK = """
"""
VLANGROUP_ACTIONS = """
-
+
{% with next_vid=record.get_next_available_vid %}
diff --git a/netbox/secrets/tables.py b/netbox/secrets/tables.py
index cc1760b93..1e8a4e669 100644
--- a/netbox/secrets/tables.py
+++ b/netbox/secrets/tables.py
@@ -4,7 +4,7 @@ from utilities.tables import BaseTable, ToggleColumn
from .models import SecretRole, Secret
SECRETROLE_ACTIONS = """
-
+
{% if perms.secrets.change_secretrole %}
diff --git a/netbox/templates/circuits/circuit.html b/netbox/templates/circuits/circuit.html
index 712ee5861..07d3c360d 100644
--- a/netbox/templates/circuits/circuit.html
+++ b/netbox/templates/circuits/circuit.html
@@ -49,7 +49,7 @@
{% if perms.extras.view_objectchange %}
- Changelog
+ Change Log
{% endif %}
diff --git a/netbox/templates/circuits/provider.html b/netbox/templates/circuits/provider.html
index 5bf05b0e2..e99f8b2c4 100644
--- a/netbox/templates/circuits/provider.html
+++ b/netbox/templates/circuits/provider.html
@@ -54,7 +54,7 @@
{% if perms.extras.view_objectchange %}
- Changelog
+ Change Log
{% endif %}
diff --git a/netbox/templates/dcim/cable.html b/netbox/templates/dcim/cable.html
index a190a7001..a78879b23 100644
--- a/netbox/templates/dcim/cable.html
+++ b/netbox/templates/dcim/cable.html
@@ -31,7 +31,7 @@
{% if perms.extras.view_objectchange %}
- Changelog
+ Change Log
{% endif %}
diff --git a/netbox/templates/dcim/device.html b/netbox/templates/dcim/device.html
index 5ede19d78..8c457121f 100644
--- a/netbox/templates/dcim/device.html
+++ b/netbox/templates/dcim/device.html
@@ -119,7 +119,7 @@
{% endif %}
{% if perms.extras.view_objectchange %}
- Changelog
+ Change Log
{% endif %}
diff --git a/netbox/templates/dcim/devicetype.html b/netbox/templates/dcim/devicetype.html
index 68384f12b..99f76ab35 100644
--- a/netbox/templates/dcim/devicetype.html
+++ b/netbox/templates/dcim/devicetype.html
@@ -54,7 +54,7 @@
{% if perms.extras.view_objectchange %}
- Changelog
+ Change Log
{% endif %}
diff --git a/netbox/templates/dcim/interface.html b/netbox/templates/dcim/interface.html
index 6027afb58..4fc7d21ac 100644
--- a/netbox/templates/dcim/interface.html
+++ b/netbox/templates/dcim/interface.html
@@ -34,7 +34,7 @@
{% if perms.extras.view_objectchange %}
- Changelog
+ Change Log
{% endif %}
diff --git a/netbox/templates/dcim/powerfeed.html b/netbox/templates/dcim/powerfeed.html
index 3ce1d36f2..1f6c6ab8e 100644
--- a/netbox/templates/dcim/powerfeed.html
+++ b/netbox/templates/dcim/powerfeed.html
@@ -52,7 +52,7 @@
{% if perms.extras.view_objectchange %}
- Changelog
+ Change Log
{% endif %}
diff --git a/netbox/templates/dcim/powerpanel.html b/netbox/templates/dcim/powerpanel.html
index b0a6961f6..6d47e08b1 100644
--- a/netbox/templates/dcim/powerpanel.html
+++ b/netbox/templates/dcim/powerpanel.html
@@ -48,7 +48,7 @@
{% if perms.extras.view_objectchange %}
- Changelog
+ Change Log
{% endif %}
diff --git a/netbox/templates/dcim/rack.html b/netbox/templates/dcim/rack.html
index 51faeef50..067f4fbdb 100644
--- a/netbox/templates/dcim/rack.html
+++ b/netbox/templates/dcim/rack.html
@@ -53,7 +53,7 @@
{% if perms.extras.view_objectchange %}
- Changelog
+ Change Log
{% endif %}
diff --git a/netbox/templates/dcim/site.html b/netbox/templates/dcim/site.html
index decfc9261..dfbf65aeb 100644
--- a/netbox/templates/dcim/site.html
+++ b/netbox/templates/dcim/site.html
@@ -60,7 +60,7 @@
{% if perms.extras.view_objectchange %}
- Changelog
+ Change Log
{% endif %}
diff --git a/netbox/templates/extras/object_changelog.html b/netbox/templates/extras/object_changelog.html
index 5d649a692..970b54d4d 100644
--- a/netbox/templates/extras/object_changelog.html
+++ b/netbox/templates/extras/object_changelog.html
@@ -1,12 +1,12 @@
{% extends base_template %}
-{% block title %}{% if obj %}{{ obj }}{% else %}{{ block.super }}{% endif %} - Changelog{% endblock %}
+{% block title %}{% if obj %}{{ obj }}{% else %}{{ block.super }}{% endif %} - Change Log{% endblock %}
{% block content %}
{% if obj %}{{ obj }}
{% endif %}
{% include 'panel_table.html' %}
{% include 'inc/paginator.html' with paginator=table.paginator page=table.page %}
- Changelog retention: {% if settings.CHANGELOG_RETENTION %}{{ settings.CHANGELOG_RETENTION }} days{% else %}Indefinite{% endif %}
+ Change log retention: {% if settings.CHANGELOG_RETENTION %}{{ settings.CHANGELOG_RETENTION }} days{% else %}Indefinite{% endif %}
{% endblock %}
diff --git a/netbox/templates/extras/objectchange.html b/netbox/templates/extras/objectchange.html
index 35be29bbd..16efa6421 100644
--- a/netbox/templates/extras/objectchange.html
+++ b/netbox/templates/extras/objectchange.html
@@ -7,7 +7,7 @@
- - Changelog
+ - Change Log
{% if objectchange.related_object.get_absolute_url %}
- {{ objectchange.related_object }}
{% elif objectchange.changed_object.get_absolute_url %}
diff --git a/netbox/templates/extras/tag.html b/netbox/templates/extras/tag.html
index c38bc2f50..2857d6188 100644
--- a/netbox/templates/extras/tag.html
+++ b/netbox/templates/extras/tag.html
@@ -44,7 +44,7 @@
{% if perms.extras.view_objectchange %}
-
- Changelog
+ Change Log
{% endif %}
diff --git a/netbox/templates/home.html b/netbox/templates/home.html
index c4821d6c3..6977bba4c 100644
--- a/netbox/templates/home.html
+++ b/netbox/templates/home.html
@@ -284,7 +284,7 @@
- Changelog
+ Change Log
{% if changelog and perms.extras.view_objectchange %}
diff --git a/netbox/templates/ipam/aggregate.html b/netbox/templates/ipam/aggregate.html
index 66281aace..590ed9208 100644
--- a/netbox/templates/ipam/aggregate.html
+++ b/netbox/templates/ipam/aggregate.html
@@ -48,7 +48,7 @@
{% if perms.extras.view_objectchange %}
- Changelog
+ Change Log
{% endif %}
diff --git a/netbox/templates/ipam/inc/service.html b/netbox/templates/ipam/inc/service.html
index 6a3a23bde..9611be175 100644
--- a/netbox/templates/ipam/inc/service.html
+++ b/netbox/templates/ipam/inc/service.html
@@ -14,7 +14,7 @@
{{ service.description }} |
-
+
{% if perms.ipam.change_service %}
diff --git a/netbox/templates/ipam/ipaddress.html b/netbox/templates/ipam/ipaddress.html
index 50bd90610..08a311492 100644
--- a/netbox/templates/ipam/ipaddress.html
+++ b/netbox/templates/ipam/ipaddress.html
@@ -49,7 +49,7 @@
{% if perms.extras.view_objectchange %}
- Changelog
+ Change Log
{% endif %}
diff --git a/netbox/templates/ipam/prefix.html b/netbox/templates/ipam/prefix.html
index 324bd927d..7bfa7ba1f 100644
--- a/netbox/templates/ipam/prefix.html
+++ b/netbox/templates/ipam/prefix.html
@@ -69,7 +69,7 @@
{% endif %}
{% if perms.extras.view_objectchange %}
- Changelog
+ Change Log
{% endif %}
diff --git a/netbox/templates/ipam/vlan.html b/netbox/templates/ipam/vlan.html
index 50b964992..246f3c866 100644
--- a/netbox/templates/ipam/vlan.html
+++ b/netbox/templates/ipam/vlan.html
@@ -55,7 +55,7 @@
{% if perms.extras.view_objectchange %}
- Changelog
+ Change Log
{% endif %}
diff --git a/netbox/templates/ipam/vrf.html b/netbox/templates/ipam/vrf.html
index 242cfde92..7bb2dea25 100644
--- a/netbox/templates/ipam/vrf.html
+++ b/netbox/templates/ipam/vrf.html
@@ -46,7 +46,7 @@
{% if perms.extras.view_objectchange %}
- Changelog
+ Change Log
{% endif %}
diff --git a/netbox/templates/secrets/secret.html b/netbox/templates/secrets/secret.html
index 438a5a943..6045897c9 100644
--- a/netbox/templates/secrets/secret.html
+++ b/netbox/templates/secrets/secret.html
@@ -34,7 +34,7 @@
{% if perms.extras.view_objectchange %}
- Changelog
+ Change Log
{% endif %}
diff --git a/netbox/templates/tenancy/tenant.html b/netbox/templates/tenancy/tenant.html
index 71c063502..9a1ed1be8 100644
--- a/netbox/templates/tenancy/tenant.html
+++ b/netbox/templates/tenancy/tenant.html
@@ -49,7 +49,7 @@
{% if perms.extras.view_objectchange %}
- Changelog
+ Change Log
{% endif %}
diff --git a/netbox/templates/virtualization/cluster.html b/netbox/templates/virtualization/cluster.html
index 6b90a660d..92540fd70 100644
--- a/netbox/templates/virtualization/cluster.html
+++ b/netbox/templates/virtualization/cluster.html
@@ -49,7 +49,7 @@
{% if perms.extras.view_objectchange %}
- Changelog
+ Change Log
{% endif %}
diff --git a/netbox/templates/virtualization/virtualmachine.html b/netbox/templates/virtualization/virtualmachine.html
index 10c1f36d4..8f3bb61d4 100644
--- a/netbox/templates/virtualization/virtualmachine.html
+++ b/netbox/templates/virtualization/virtualmachine.html
@@ -54,7 +54,7 @@
{% endif %}
{% if perms.extras.view_objectchange %}
- Changelog
+ Change Log
{% endif %}
diff --git a/netbox/tenancy/tables.py b/netbox/tenancy/tables.py
index 884bdc3df..af4fb34c0 100644
--- a/netbox/tenancy/tables.py
+++ b/netbox/tenancy/tables.py
@@ -4,7 +4,7 @@ from utilities.tables import BaseTable, ToggleColumn
from .models import Tenant, TenantGroup
TENANTGROUP_ACTIONS = """
-
+
{% if perms.tenancy.change_tenantgroup %}
diff --git a/netbox/virtualization/tables.py b/netbox/virtualization/tables.py
index ba4554ff5..fdb997dab 100644
--- a/netbox/virtualization/tables.py
+++ b/netbox/virtualization/tables.py
@@ -7,7 +7,7 @@ from utilities.tables import BaseTable, ToggleColumn
from .models import Cluster, ClusterGroup, ClusterType, VirtualMachine
CLUSTERTYPE_ACTIONS = """
-
+
{% if perms.virtualization.change_clustertype %}
@@ -16,7 +16,7 @@ CLUSTERTYPE_ACTIONS = """
"""
CLUSTERGROUP_ACTIONS = """
-
+
{% if perms.virtualization.change_clustergroup %}
|