2023-02-24 16:04:00 -05:00
|
|
|
{% if counts %}
|
|
|
|
<div class="list-group list-group-flush">
|
2023-05-30 16:31:34 -04:00
|
|
|
{% for model, count, url in counts %}
|
2023-03-30 10:03:41 -04:00
|
|
|
{% if count != None %}
|
2023-05-30 16:31:34 -04:00
|
|
|
<a href="{{ url }}" class="list-group-item list-group-item-action">
|
2023-03-30 10:03:41 -04:00
|
|
|
<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>
|
|
|
|
{% else %}
|
|
|
|
<div class="list-group-item list-group-item-action d-flex w-100 justify-content-between align-items-center">
|
2023-02-24 16:04:00 -05:00
|
|
|
{{ model|meta:"verbose_name_plural"|bettertitle }}
|
2023-03-30 10:03:41 -04:00
|
|
|
<h6 class="mb-1" title="No permission"><i class="mdi mdi-lock-outline"></i></h6>
|
2023-02-24 16:04:00 -05:00
|
|
|
</div>
|
2023-03-30 10:03:41 -04:00
|
|
|
{% endif %}
|
2023-02-24 16:04:00 -05:00
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|