Skip to content
Snippets Groups Projects
Commit 8e011d98 authored by Robin Sonnabend's avatar Robin Sonnabend
Browse files

Correct order of topics at each point

parent f3151bd2
Branches
No related tags found
No related merge requests found
......@@ -13,7 +13,7 @@
</tr>
</thead>
<tbody>
{% for topic in event.topics %}
{% for topic in event.sorted_topics() %}
<tr>
<td class="mdl-data-table__cell--non-numeric"><a href="{{ url_for(".topic_show", id=topic.id) }}">{{ topic.name }}</a></td>
<td class="mdl-data-table__cell--non-numeric">{{ topic.mode }}</td>
......
......@@ -10,7 +10,7 @@
{% endif %}
</h4>
</div>
{% for topic in event.topics %}
{% for topic in event.sorted_topics() %}
<div class="mdl-card__supporting-text {% if topic.id == event.current_topic_id %}rede-list-point-big{% endif %}">
{{ topic.name }}
</div>
......
......@@ -18,7 +18,7 @@
</tr>
</thead>
<tbody>
{% for topic in event.topics %}
{% for topic in event.sorted_topics() %}
{% if topic.id == event.current_topic_id %}
<tr class="rede-table-bg-blue rede-table-centered">
<td colspan="2">{{ topic.name }}</td>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment