diff --git a/netbox_interface_sync/__init__.py b/netbox_interface_sync/__init__.py index 95a688d..02fb368 100644 --- a/netbox_interface_sync/__init__.py +++ b/netbox_interface_sync/__init__.py @@ -3,8 +3,8 @@ from netbox.plugins import PluginConfig class Config(PluginConfig): name = 'netbox_interface_sync' - verbose_name = 'NetBox interface synchronization' - description = 'Syncing interfaces with the interfaces from device type for NetBox 4' + verbose_name = 'NetBox Interface Synchronization' + description = 'Syncing Device Interfaces with the Interfaces from Device Type for NetBox 4' version = '0.4.1' author = 'Keith Knowles' author_email = 'mkknowles@outlook.com' diff --git a/netbox_interface_sync/templates/netbox_interface_sync/compare_interfaces_button.html b/netbox_interface_sync/templates/netbox_interface_sync/compare_interfaces_button.html index 5594df4..f1aa91e 100644 --- a/netbox_interface_sync/templates/netbox_interface_sync/compare_interfaces_button.html +++ b/netbox_interface_sync/templates/netbox_interface_sync/compare_interfaces_button.html @@ -1,3 +1,3 @@ - Interface Sync + Sync Interfaces diff --git a/netbox_interface_sync/templates/netbox_interface_sync/interface_comparison.html b/netbox_interface_sync/templates/netbox_interface_sync/interface_comparison.html index eda27e1..a6b5ac3 100644 --- a/netbox_interface_sync/templates/netbox_interface_sync/interface_comparison.html +++ b/netbox_interface_sync/templates/netbox_interface_sync/interface_comparison.html @@ -37,11 +37,11 @@ function uncheck(event) {
{% if templates_count == interfaces_count %}
- The device and device type have the same number of interfaces.
+ The Device and Device Type have the same number of Interfaces.
{% else %}
- The device and device type have a different number of interfaces.
+ The Device and Device Type have a different number of Interfaces.
Device: {{ interfaces_count }}
- Device type: {{ templates_count }}
+ Device Type: {{ templates_count }}
{% endif %}