From 6a4610894e7c2d83f2485e6938e2a15a058b0813 Mon Sep 17 00:00:00 2001 From: NetTech2001 <128771411+NetTech2001@users.noreply.github.com> Date: Fri, 17 May 2024 20:32:45 -0600 Subject: [PATCH] Final Details Just fixing some text formatting. --- netbox_interface_sync/__init__.py | 4 ++-- .../netbox_interface_sync/compare_interfaces_button.html | 2 +- .../netbox_interface_sync/interface_comparison.html | 6 +++--- .../netbox_interface_sync/number_of_interfaces_panel.html | 8 ++++---- 4 files changed, 10 insertions(+), 10 deletions(-) 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 %}