mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
15 lines
460 B
HTML
15 lines
460 B
HTML
![]() |
{% load helpers %}
|
||
|
|
||
|
{% if counts %}
|
||
|
<div class="list-group list-group-flush">
|
||
|
{% for model, count in counts %}
|
||
|
<a href="{% url model|viewname:"list" %}" class="list-group-item list-group-item-action">
|
||
|
<div class="d-flex w-100 justify-content-between align-items-center">
|
||
|
{{ model|meta:"verbose_name_plural"|bettertitle }}
|
||
|
<h6 class="mb-1">{{ count }}</h6>
|
||
|
</div>
|
||
|
</a>
|
||
|
{% endfor %}
|
||
|
</div>
|
||
|
{% endif %}
|