diff --git a/netbox/templates/ipam/iprange.html b/netbox/templates/ipam/iprange.html
index 38d8b1e30..0de00ee45 100644
--- a/netbox/templates/ipam/iprange.html
+++ b/netbox/templates/ipam/iprange.html
@@ -26,15 +26,18 @@
{{ object.size }} |
- {% trans "Reserved" %} |
- {% checkmark object.mark_reserved %} |
+ {% trans "Marked Populated" %} |
+ {% checkmark object.mark_populated %} |
+
+
+ {% trans "Marked Utilized" %} |
+ {% checkmark object.mark_utilized %} |
{% trans "Utilization" %} |
{% if object.mark_utilized %}
{% utilization_graph 100 warning_threshold=0 danger_threshold=0 %}
- ({% trans "Marked fully utilized" %})
{% else %}
{% utilization_graph object.utilization %}
{% endif %}
|