1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00
2021-03-13 02:19:42 -07:00

24 lines
748 B
HTML

{% extends 'generic/object_list.html' %} {% load humanize %} {% block sidebar %}
<div class="card mb-3">
<div class="card-header d-flex justify-content-between align-items-center">
<h5>Statistics</h5>
<i class="bi bi-pie-chart-fill"></i>
</div>
<ul class="list-group list-group-flush">
<li
class="list-group-item d-flex align-items-center justify-content-between"
>
Total IPv4 IPs
<span class="badge rounded-pill bg-primary">{{ ipv4_total|intcomma }}</span>
</li>
<li
class="list-group-item d-flex align-items-center justify-content-between"
>
Total IPv6 /64s
<span class="badge rounded-pill bg-primary">{{ ipv6_total|intcomma }}</span>
</li>
</ul>
</div>
{% endblock %}