Skip to content

Commit

Permalink
bugfix colspan
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasTorsvik committed Nov 14, 2023
1 parent 24a47dc commit a5bdde8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/schedule.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ <h2>Schedule</h2>
</tr>
{% if day.goal %}
<tr>
<td rowspan="2">
<td colspan="2">
<b>Goal for the day:</b> {{ day.goal }}
</td>
</tr>
{% endif %}
{% if day.locations %}
{% for loc in day.locations %}
<tr>
<td rowspan="2">
<td colspan="2">
{% if loc.url %}
<b>{{ loc.location }}:</b> <a href="{{ loc.url }}" target="_blank">{{ loc.room }}</a>
{% else %}
Expand Down

0 comments on commit a5bdde8

Please sign in to comment.