objectcounts.html 672 B

1234567891011121314151617181920
  1. {% load i18n %}
  2. {% if counts %}
  3. <div class="list-group list-group-flush">
  4. {% for model, count, url in counts %}
  5. <a {% if url %}href="{{ url }}" {% endif %}class="list-group-item list-group-item-action px-1 py-2">
  6. <div class="d-flex w-100 justify-content-between align-items-center">
  7. {{ model|meta:"verbose_name_plural"|bettertitle }}
  8. {% if count is None %}
  9. <span title="{% trans "No permission" %}">
  10. <i class="mdi mdi-lock-outline"></i>
  11. </span>
  12. {% else %}
  13. <strong>{{ count }}</strong>
  14. {% endif %}
  15. </div>
  16. </a>
  17. {% endfor %}
  18. </div>
  19. {% endif %}