diff --git a/netbox/templates/circuits/circuit.html b/netbox/templates/circuits/circuit.html index 09feaae5e..1890570d1 100644 --- a/netbox/templates/circuits/circuit.html +++ b/netbox/templates/circuits/circuit.html @@ -4,7 +4,7 @@ {% block breadcrumbs %}
Manufacturer | -{{ object.manufacturer }} | +{{ object.manufacturer }} | ||
Model Name | diff --git a/netbox/templates/dcim/platform.html b/netbox/templates/dcim/platform.html index 8a3ff5b6e..f620bc4c9 100644 --- a/netbox/templates/dcim/platform.html +++ b/netbox/templates/dcim/platform.html @@ -23,9 +23,19 @@Description | {{ object.description|placeholder }} | ||
Manufacturer | ++ {% if object.manufacturer %} + {{ object.manufacturer }} + {% else %} + None + {% endif %} + | +|||
NAPALM Driver | -{{ object.napalm_driver }} | +{{ object.napalm_driver|placeholder }} | ||
NAPALM Arguments | diff --git a/netbox/templates/dcim/rack.html b/netbox/templates/dcim/rack.html index 8812157ef..3bb0084a3 100644 --- a/netbox/templates/dcim/rack.html +++ b/netbox/templates/dcim/rack.html @@ -8,7 +8,7 @@ {% block breadcrumbs %}Group |
{% if rack.group %}
- {{ rack.group }}
+ {{ rack.group }}
{% else %}
None
{% endif %}
diff --git a/netbox/templates/dcim/site.html b/netbox/templates/dcim/site.html
index 2d0d7b1a4..b68fc1f02 100644
--- a/netbox/templates/dcim/site.html
+++ b/netbox/templates/dcim/site.html
@@ -180,27 +180,27 @@
| All racks | {{ stats.rack_count }} | diff --git a/netbox/templates/dcim/virtualchassis.html b/netbox/templates/dcim/virtualchassis.html index 21678fa79..6887c01ca 100644 --- a/netbox/templates/dcim/virtualchassis.html +++ b/netbox/templates/dcim/virtualchassis.html @@ -7,7 +7,7 @@ {% block breadcrumbs %}
RIR | - {{ object.rir }} + {{ object.rir }} | |||
Role |
{% if object.role %}
- {{ object.role }}
+ {{ object.role }}
{% else %}
None
{% endif %}
diff --git a/netbox/templates/ipam/vlan.html b/netbox/templates/ipam/vlan.html
index f4db12f25..91dd9f1d8 100644
--- a/netbox/templates/ipam/vlan.html
+++ b/netbox/templates/ipam/vlan.html
@@ -7,10 +7,10 @@
{% block breadcrumbs %}
| Role |
{% if object.role %}
- {{ object.role }}
+ {{ object.role }}
{% else %}
None
{% endif %}
diff --git a/netbox/templates/secrets/secret.html b/netbox/templates/secrets/secret.html
index 3c0d1977d..7b03bfc80 100644
--- a/netbox/templates/secrets/secret.html
+++ b/netbox/templates/secrets/secret.html
@@ -6,7 +6,7 @@
{% block breadcrumbs %}
| |
Role | -{{ object.role }} | ++ {{ object.role }} + | ||
Name | diff --git a/netbox/templates/tenancy/tenant.html b/netbox/templates/tenancy/tenant.html index 2dd7ac7b0..684b1d8b1 100644 --- a/netbox/templates/tenancy/tenant.html +++ b/netbox/templates/tenancy/tenant.html @@ -5,7 +5,7 @@ {% block breadcrumbs %}Role | {% if object.role %} - {{ object.role }} + {{ object.role }} {% else %} None {% endif %} @@ -37,7 +37,7 @@ | Platform | {% if object.platform %} - {{ object.platform }} + {{ object.platform }} {% else %} None {% endif %} |