mirror of
https://github.com/drygdryg/netbox-plugin-interface-sync
synced 2024-11-25 18:10:52 +03:00
Added possibility to exclude interfaces panel
This commit is contained in:
parent
00cedbd589
commit
729218f577
@ -9,7 +9,8 @@ class Config(PluginConfig):
|
|||||||
author = 'Victor Golovanenko'
|
author = 'Victor Golovanenko'
|
||||||
author_email = 'drygdryg2014@yandex.ru'
|
author_email = 'drygdryg2014@yandex.ru'
|
||||||
default_settings = {
|
default_settings = {
|
||||||
'exclude_virtual_interfaces': True
|
'exclude_virtual_interfaces': True,
|
||||||
|
'include_interfaces_panel': False
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
<div class="card">
|
{% if config.include_interfaces_panel %}
|
||||||
|
<div class="card">
|
||||||
<h5 class="card-header">Number of interfaces</h5>
|
<h5 class="card-header">Number of interfaces</h5>
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
Total interfaces: {{ interfaces|length }}<br>
|
Total interfaces: {{ interfaces|length }}<br>
|
||||||
@ -7,4 +8,5 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
Interfaces in the assigned device type: {{ interface_templates|length }}
|
Interfaces in the assigned device type: {{ interface_templates|length }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
{% endif %}
|
Loading…
Reference in New Issue
Block a user