- {% render_field form.region %}
- {% render_field form.site_group %}
{% render_field form.site %}
- {% render_field form.provider_network_provider %}
{% render_field form.provider_network %}
diff --git a/netbox/templates/circuits/inc/circuit_termination.html b/netbox/templates/circuits/inc/circuit_termination.html
index 12c63bd34..22c204afc 100644
--- a/netbox/templates/circuits/inc/circuit_termination.html
+++ b/netbox/templates/circuits/inc/circuit_termination.html
@@ -74,10 +74,10 @@
- {% render_errors form %}
-
+{% block form %}
+
+ {# A side termination #}
+
+
+
A Side
+
+ {% if 'termination_a_device' in form.fields %}
+ {% render_field form.termination_a_device %}
+ {% endif %}
+ {% if 'termination_a_powerpanel' in form.fields %}
+ {% render_field form.termination_a_powerpanel %}
+ {% endif %}
+ {% if 'termination_a_circuit' in form.fields %}
+ {% render_field form.termination_a_circuit %}
+ {% endif %}
+ {% render_field form.a_terminations %}
+
+ {# B side termination #}
+
+
+
B Side
+
+ {% if 'termination_b_device' in form.fields %}
+ {% render_field form.termination_b_device %}
+ {% endif %}
+ {% if 'termination_b_powerpanel' in form.fields %}
+ {% render_field form.termination_b_powerpanel %}
+ {% endif %}
+ {% if 'termination_b_circuit' in form.fields %}
+ {% render_field form.termination_b_circuit %}
+ {% endif %}
+ {% render_field form.b_terminations %}
+
+
+ {# Cable attributes #}
+
+
+
Cable
+
+ {% render_field form.status %}
+ {% render_field form.type %}
+ {% render_field form.label %}
+ {% render_field form.description %}
+ {% render_field form.color %}
+
+
+
+ {{ form.length }}
+
+
+ {{ form.length_unit }}
+
+
+
+ {% render_field form.tags %}
+
+
+
+
+
Tenancy
+
+ {% render_field form.tenant_group %}
+ {% render_field form.tenant %}
+
+
+ {% if form.custom_fields %}
+
+
+
Custom Fields
+
+ {% render_custom_fields form %}
+
+ {% endif %}
+
+ {% if form.comments %}
+
+
Comments
+ {% render_field form.comments %}
+
+ {% endif %}
+
{% endblock %}
diff --git a/netbox/templates/dcim/consoleport.html b/netbox/templates/dcim/consoleport.html
index dee57e28b..0f2d2bb80 100644
--- a/netbox/templates/dcim/consoleport.html
+++ b/netbox/templates/dcim/consoleport.html
@@ -71,13 +71,13 @@
diff --git a/netbox/templates/dcim/consoleserverport.html b/netbox/templates/dcim/consoleserverport.html
index cd447d11d..c52105c96 100644
--- a/netbox/templates/dcim/consoleserverport.html
+++ b/netbox/templates/dcim/consoleserverport.html
@@ -71,13 +71,13 @@
diff --git a/netbox/templates/dcim/device/inc/interface_table_controls.html b/netbox/templates/dcim/device/inc/interface_table_controls.html
index 14e552439..2b082cfe6 100644
--- a/netbox/templates/dcim/device/inc/interface_table_controls.html
+++ b/netbox/templates/dcim/device/inc/interface_table_controls.html
@@ -7,5 +7,6 @@
{% endblock extra_table_controls %}
diff --git a/netbox/templates/dcim/device_edit.html b/netbox/templates/dcim/device_edit.html
index 07e3bbdc9..d0677ad20 100644
--- a/netbox/templates/dcim/device_edit.html
+++ b/netbox/templates/dcim/device_edit.html
@@ -18,7 +18,6 @@
+
{% render_widget widget %}
diff --git a/netbox/templates/extras/dashboard/widget_add.html b/netbox/templates/extras/dashboard/widget_add.html
index e752a393d..70e259b22 100644
--- a/netbox/templates/extras/dashboard/widget_add.html
+++ b/netbox/templates/extras/dashboard/widget_add.html
@@ -4,6 +4,7 @@
{% csrf_token %}
{% block form %}
diff --git a/netbox/templates/extras/dashboard/widgets/changelog.html b/netbox/templates/extras/dashboard/widgets/changelog.html
deleted file mode 100644
index dfa4dba3f..000000000
--- a/netbox/templates/extras/dashboard/widgets/changelog.html
+++ /dev/null
@@ -1,4 +0,0 @@
-
diff --git a/netbox/templates/extras/dashboard/widgets/objectlist.html b/netbox/templates/extras/dashboard/widgets/objectlist.html
new file mode 100644
index 000000000..e9569396b
--- /dev/null
+++ b/netbox/templates/extras/dashboard/widgets/objectlist.html
@@ -0,0 +1,4 @@
+
diff --git a/netbox/templates/extras/dashboard/widgets/rssfeed.html b/netbox/templates/extras/dashboard/widgets/rssfeed.html
new file mode 100644
index 000000000..293e22b7f
--- /dev/null
+++ b/netbox/templates/extras/dashboard/widgets/rssfeed.html
@@ -0,0 +1,13 @@
+
+ {% for entry in feed.entries %}
+
+
+
+ {{ entry.summary|safe }}
+
+
+ {% empty %}
+
No content found
+ {% endfor %}
+
+
diff --git a/netbox/templates/generic/bulk_import.html b/netbox/templates/generic/bulk_import.html
index 4ddfb884c..c81923ace 100644
--- a/netbox/templates/generic/bulk_import.html
+++ b/netbox/templates/generic/bulk_import.html
@@ -15,15 +15,20 @@ Context:
{% block tabs %}
-
-
-
-
+
Upload File
+ -
+
+ Data File
+
+
{% endblock tabs %}
@@ -31,45 +36,66 @@ Context: