Skip to content

Commit 5d389bd

Browse files
committed
Wording Updates
1 parent 6ef4b2c commit 5d389bd

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

netbox_interface_synchronization/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ class Config(PluginConfig):
55
name = 'netbox_interface_synchronization'
66
verbose_name = 'NetBox Interface Synchronization'
77
description = 'Syncing existing interfaces with the interfaces from a new device type in NetBox'
8-
version = '4.0.0'
8+
version = '4.0.1'
99
author = 'Keith Knowles'
1010
author_email = '[email protected]'
1111
default_settings = {

netbox_interface_synchronization/templates/netbox_interface_synchronization/interface_comparison.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@
3737

3838
<p>
3939
{% if templates_count == interfaces_count %}
40-
The Device and Device Type have the same number of Interfaces.
40+
The Device and Device Type have the same Interface configuration.
4141
{% else %}
42-
The Device and Device Type have a different number of Interfaces.<br>
42+
The Device and Device Type have a different Interfaces configuration.<br>
4343
Device: {{ interfaces_count }}<br>
4444
Device Type: {{ templates_count }}
4545
{% endif %}

netbox_interface_synchronization/templates/netbox_interface_synchronization/number_of_interfaces_panel.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ <h5 class="card-header">Number of Interfaces</h5>
33
<div class="card-body">
44
Total Interfaces: {{ interfaces|length }}<br>
55
{% if config.exclude_virtual_interfaces %}
6-
Non-Virtual Interfaces: {{ real_interfaces|length }}<br>
6+
Pysical Interfaces: {{ real_interfaces|length }}<br>
77
{% endif %}
88
Interfaces in the assigned Device Type: {{ interface_templates|length }}
99
</div>

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name='netbox-interface-synchronization',
8-
version='4.0.0',
8+
version='4.0.1',
99
description='Syncing existing interfaces with the interfaces from a new device type in NetBox',
1010
long_description=long_description,
1111
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)