{% extends 'generic/object.html' %} {% load helpers %} {% load plugins %} {% load render_table from django_tables2 %} {% block extra_controls %} {% if perms.ipam.add_prefix %} Add Prefix {% endif %} {% endblock extra_controls %} {% block content %}
| Name | {{ object.name }} | 
|---|---|
| Description | {{ object.description|placeholder }} | 
| Weight | {{ object.weight }} | 
| Prefixes | {{ prefixes_table.rows|length }} | 
| IP Ranges | {% with ipranges_count=object.ip_ranges.count %} {% if ipranges_count %} {{ ipranges_count }} {% else %} {{ ''|placeholder }} {% endif %} {% endwith %} | 
| VLANs | {% with vlans_count=object.vlans.count %} {% if vlans_count %} {{ vlans_count }} {% else %} {{ ''|placeholder }} {% endif %} {% endwith %} |