diff --git a/netbox/templates/circuits/circuit_bulk_edit.html b/netbox/templates/circuits/circuit_bulk_edit.html
index d37fe5dfbd..4668f36d2c 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 a318847ae5..af92861b0e 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 e2b6c6ef5c..22911e9f0e 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 %}