Waitinglist: show time for subevent in overview

This commit is contained in:
Richard Schreiber
2024-07-09 15:37:51 +02:00
parent d7dde8c23e
commit 8a5b13dee9

View File

@@ -119,7 +119,7 @@
{% for se in request.event.subevents.all %} {% for se in request.event.subevents.all %}
<option value="{{ se.id }}" <option value="{{ se.id }}"
{% if request.GET.subevent|add:0 == se.id %}selected="selected"{% endif %}> {% if request.GET.subevent|add:0 == se.id %}selected="selected"{% endif %}>
{{ se.name }} {{ se.get_date_range_display }} {{ se }}
</option> </option>
{% endfor %} {% endfor %}
</select> </select>
@@ -195,7 +195,7 @@
{% endif %} {% endif %}
</td> </td>
{% if request.event.has_subevents %} {% if request.event.has_subevents %}
<td>{{ e.subevent.name }} {{ e.subevent.get_date_range_display }}</td> <td>{{ e.subevent }}</td>
{% endif %} {% endif %}
<td> <td>
{{ e.created|date:"SHORT_DATETIME_FORMAT" }} {{ e.created|date:"SHORT_DATETIME_FORMAT" }}