mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
19 lines
723 B
HTML
19 lines
723 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="mdi mdi-chart-line"></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 %}
|