UI: 2024 Hero component options #103971

Merged
Márton Lente merged 66 commits from ui/2024-hero-options into main 2024-09-24 13:00:31 +02:00
Showing only changes of commit 1991748842 - Show all commits

View File

@ -3,6 +3,8 @@
{% block content_main %} {% block content_main %}
<h2>Tickets</h2> <h2>Tickets</h2>
{% if object_list %}
<table class="table table-no-box"> <table class="table table-no-box">
<tbody> <tbody>
{% for ticket in object_list %} {% for ticket in object_list %}
@ -20,9 +22,12 @@
<td><a href="{{ detail_url }}">{% include "tickets/components/pill_payment_status.html" %}</a></td> <td><a href="{{ detail_url }}">{% include "tickets/components/pill_payment_status.html" %}</a></td>
<td>{% include "tickets/ticket_detail_invoice.html" %}</td> <td>{% include "tickets/ticket_detail_invoice.html" %}</td>
</tr> </tr>
{% empty %}
No tickets yet.
{% endfor %} {% endfor %}
</tbody> </tbody>
</table> </table>
{% else %}
<div>
No tickets yet.
</div>
{% endif %}
{% endblock %} {% endblock %}