orga view: room list must use event slug, not event name

This commit is contained in:
Franzi 2021-11-21 08:53:40 +01:00
parent f3a7b592be
commit fd6fbc97ca
Signed by: kunsi
GPG Key ID: 12E3D2136B818350
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@
<h3>{% trans "room list" %}</h3>
<ul>
{% for room in request.event.rooms.all %}
<li><a href="{% url 'plugins:pretalx_lower_thirds:lowerthirds' request.event %}#{{ room.name }}">{{ room.name }}</a></li>
<li><a href="{% url 'plugins:pretalx_lower_thirds:lowerthirds' request.event.slug %}#{{ room.name }}">{{ room.name }}</a></li>
{% endfor %}
</ul>
{% endif %}