ASN |
- {{ object.asn|placeholder }} |
+ {{ object.asn|placeholder }} |
Account |
@@ -65,8 +65,8 @@
{% plugin_right_page object %}
-
-
+
+
Description |
- {{ object.description }} |
+ {{ object.description|placeholder }} |
diff --git a/netbox/templates/dcim/platform.html b/netbox/templates/dcim/platform.html
index 8e3640009..c19790b1e 100644
--- a/netbox/templates/dcim/platform.html
+++ b/netbox/templates/dcim/platform.html
@@ -40,10 +40,6 @@
NAPALM Driver |
{{ object.napalm_driver|placeholder }} |
-
- NAPALM Arguments |
- {{ object.napalm_args }} |
-
Devices |
@@ -56,6 +52,14 @@
{% plugin_left_page object %}
+
+
+
+ {{ object.napalm_args }}
+
+
{% include 'inc/custom_fields_panel.html' %}
{% plugin_right_page object %}
diff --git a/netbox/templates/ipam/prefix.html b/netbox/templates/ipam/prefix.html
index 08270f760..e112ee82c 100644
--- a/netbox/templates/ipam/prefix.html
+++ b/netbox/templates/ipam/prefix.html
@@ -11,16 +11,6 @@
-
-
- {{ object.get_status_display }}
- {% if object.is_pool %}
- Is a Pool
- {% else %}
- Not a Pool
- {% endif %}
- |
-
Family |
IPv{{ object.family }} |
@@ -94,6 +84,22 @@
{% endif %}
+
+ Status |
+
+ {{ object.get_status_display }}
+ |
+
+
+ Is a pool |
+
+ {% if object.is_pool %}
+
+ {% else %}
+
+ {% endif %}
+ |
+
Description |
{{ object.description|placeholder }} |
diff --git a/netbox/templates/ipam/vrf.html b/netbox/templates/ipam/vrf.html
index 37fb5a531..d39b1999d 100644
--- a/netbox/templates/ipam/vrf.html
+++ b/netbox/templates/ipam/vrf.html
@@ -14,15 +14,6 @@
-
-
- {% if object.enforce_unique %}
- Unique IP Space
- {% else %}
- Non-Unique IP Space
- {% endif %}
- |
-
Route Distinguisher |
{{ object.rd }} |
@@ -37,6 +28,16 @@
{% endif %}
+
+ Unique IP Space |
+
+ {% if object.enforce_unique %}
+
+ {% else %}
+
+ {% endif %}
+ |
+
Description |
{{ object.description|placeholder }} |
|