diff --git a/netbox/templates/circuits/circuit_bulk_edit.html b/netbox/templates/circuits/circuit_bulk_edit.html
index d37fe5dfb..4668f36d2 100644
--- a/netbox/templates/circuits/circuit_bulk_edit.html
+++ b/netbox/templates/circuits/circuit_bulk_edit.html
@@ -11,7 +11,6 @@
{{ circuit.provider }} |
{{ circuit.port_speed }} |
{{ circuit.commit_rate }} |
- {{ circuit.comments }} |
{% endfor %}
{% endblock %}
diff --git a/netbox/templates/circuits/provider_bulk_edit.html b/netbox/templates/circuits/provider_bulk_edit.html
index a318847ae..af92861b0 100644
--- a/netbox/templates/circuits/provider_bulk_edit.html
+++ b/netbox/templates/circuits/provider_bulk_edit.html
@@ -7,9 +7,8 @@
{% for provider in selected_objects %}
{{ provider }} |
- {{ aggregate.asn }} |
- {{ aggregate.account }} |
- {{ aggregate.comments }} |
+ {{ provider.account }} |
+ {{ provider.asn }} |
{% endfor %}
{% endblock %}
diff --git a/netbox/templates/dcim/devicetype_bulk_edit.html b/netbox/templates/dcim/devicetype_bulk_edit.html
index e2b6c6ef5..22911e9f0 100644
--- a/netbox/templates/dcim/devicetype_bulk_edit.html
+++ b/netbox/templates/dcim/devicetype_bulk_edit.html
@@ -9,7 +9,7 @@
{{ devicetype }} |
{{ devicetype.model }} |
{{ devicetype.manufacturer }} |
- {{ device.u_height }} |
+ {{ devicetype.u_height }}U |
{% endfor %}
{% endblock %}