@@ -183,7 +183,7 @@
{% if ip_addresses %}
{% for ip in ip_addresses %}
- {% include 'dcim/inc/_ipaddress.html' %}
+ {% include 'dcim/inc/ipaddress.html' %}
{% endfor %}
{% elif interfaces or mgmt_interfaces %}
@@ -212,7 +212,7 @@
{% if services %}
{% for service in services %}
- {% include 'dcim/inc/_service.html' %}
+ {% include 'dcim/inc/service.html' %}
{% endfor %}
{% else %}
@@ -234,7 +234,7 @@
{% for iface in mgmt_interfaces %}
- {% include 'dcim/inc/_interface.html' with icon='wrench' %}
+ {% include 'dcim/inc/interface.html' with icon='wrench' %}
{% empty %}
@@ -246,7 +246,7 @@
|
{% endfor %}
{% for cp in console_ports %}
- {% include 'dcim/inc/_consoleport.html' %}
+ {% include 'dcim/inc/consoleport.html' %}
{% empty %}
@@ -258,7 +258,7 @@
|
{% endfor %}
{% for pp in power_ports %}
- {% include 'dcim/inc/_powerport.html' %}
+ {% include 'dcim/inc/powerport.html' %}
{% empty %}
@@ -349,7 +349,7 @@
{% for devicebay in device_bays %}
- {% include 'dcim/inc/_devicebay.html' with selectable=True %}
+ {% include 'dcim/inc/devicebay.html' with selectable=True %}
{% empty %}
No device bays defined |
@@ -401,7 +401,7 @@
{% for iface in interfaces %}
- {% include 'dcim/inc/_interface.html' with selectable=True %}
+ {% include 'dcim/inc/interface.html' with selectable=True %}
{% empty %}
No interfaces defined |
@@ -458,7 +458,7 @@
{% for csp in cs_ports %}
- {% include 'dcim/inc/_consoleserverport.html' with selectable=True %}
+ {% include 'dcim/inc/consoleserverport.html' with selectable=True %}
{% empty %}
No console server ports defined |
@@ -510,7 +510,7 @@
{% for po in power_outlets %}
- {% include 'dcim/inc/_poweroutlet.html' with selectable=True %}
+ {% include 'dcim/inc/poweroutlet.html' with selectable=True %}
{% empty %}
No power outlets defined |
diff --git a/netbox/templates/dcim/device_import.html b/netbox/templates/dcim/device_import.html
index a603ab4ef..c075abe34 100644
--- a/netbox/templates/dcim/device_import.html
+++ b/netbox/templates/dcim/device_import.html
@@ -5,7 +5,7 @@
{% block title %}Device Import{% endblock %}
{% block content %}
-{% include 'dcim/inc/_device_import_header.html' %}
+{% include 'dcim/inc/device_import_header.html' %}
|