{% load humanize helpers i18n %}
| {% trans "Utilization" %} | {% if object.mark_utilized %} {% utilization_graph 100 warning_threshold=0 danger_threshold=0 %} ({% trans "Marked fully utilized" %}) {% else %} {% utilization_graph object.get_utilization %} {% endif %} |
|---|---|
| {% trans "Child IPs" %} | {{ child_ip_count }} |
| {% trans "Available IPs" %} | {% if available_count > 1000000 %} {{ available_count|intword }} {% else %} {{ available_count|intcomma }} {% endif %} |
| {% trans "First available IP" %} | {% with first_available_ip=object.get_first_available_ip %} {% if first_available_ip %} {% if perms.ipam.add_ipaddress %} {{ first_available_ip }} {% else %} {{ first_available_ip }} {% endif %} {% else %} {{ ''|placeholder }} {% endif %} {% endwith %} |