Skip to content

Commit

Permalink
new bugfix?
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasTorsvik committed Nov 14, 2023
1 parent 94039d4 commit de79f3a
Showing 1 changed file with 16 additions and 14 deletions.
30 changes: 16 additions & 14 deletions templates/schedule.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,20 +45,22 @@ <h2>Schedule</h2>
{% endif %}
</td>
</tr>
{% for loc in day.locations %}
<tr>
<td class="uk-width-2-5">
{{ loc.location }}
</td>
<td class="uk-width-3-5">
{% if loc.url %}
<a href="{{ loc.url }}" target="_blank">{{ loc.room }}</a>
{% else %}
{{ loc.room }}
{% endif %}
</td>
</tr>
{% endfor %}
{% if day.locations %}
{% for loc in day.locations %}
<tr>
<td class="uk-width-2-5">
{{ loc.location }}
</td>
<td class="uk-width-3-5">
{% if loc.url %}
<a href="{{ loc.url }}" target="_blank">{{ loc.room }}</a>
{% else %}
{{ loc.room }}
{% endif %}
</td>
</tr>
{% endfor %}
{% endif %}
{% for session in day.sessions %}
<tr>
<td class="uk-width-2-5">
Expand Down

0 comments on commit de79f3a

Please sign in to comment.