1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Closes #5592: Add IP addresses count to VRF view

This commit is contained in:
Jeremy Stretch
2021-03-08 15:57:17 -05:00
parent 759190d8ba
commit 16a3d1339a
3 changed files with 9 additions and 0 deletions

View File

@@ -95,6 +95,12 @@
<td>
<a href="{% url 'ipam:prefix_list' %}?vrf_id={{ object.pk }}">{{ prefix_count }}</a>
</td>
</tr>
<tr>
<td>IP Addresses</td>
<td>
<a href="{% url 'ipam:ipaddress_list' %}?vrf_id={{ object.pk }}">{{ ipaddress_count }}</a>
</td>
</tr>
</table>
</div>