ticket_list_list.html 666 B

123456789101112131415161718192021
  1. {% extends "tickets/base.html" %}
  2. {% block content %}
  3. <h1 class="fw-bold">Lists</h1>
  4. {% if ticket_lists %}
  5. {% regroup ticket_lists by group as section_ticket_list %}
  6. {% for group in section_ticket_list %}
  7. <h3>{{ group.grouper }}</h3>
  8. <ul class="list-group mb-4">
  9. {% for ticket_list in group.list %}
  10. <li class="list-group-item d-flex align-items-center justify-content-between">
  11. <a href="{% url 'tickets:ticket_list_detail' ticket_list.pk %}">{{ ticket_list.name }}</a>
  12. </li>
  13. {% endfor %}
  14. </ul>
  15. {% endfor %}
  16. {% else %}
  17. <h4>There are no Lists!</h4>
  18. {% endif %}
  19. {% endblock %}