1
0
Fork 0
mirror of https://github.com/Kunsi/pretalx-plugin-broadcast-tools synced 2024-05-03 01:41:54 +00:00

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

View file

@ -26,7 +26,7 @@
<h3>{% trans "room list" %}</h3> <h3>{% trans "room list" %}</h3>
<ul> <ul>
{% for room in request.event.rooms.all %} {% 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 %} {% endfor %}
</ul> </ul>
{% endif %} {% endif %}