Skip to content

Commit

Permalink
align table columns across month
Browse files Browse the repository at this point in the history
might by contributing to qwandor#3
  • Loading branch information
Neudrino committed Jan 22, 2023
1 parent 58ec42f commit fde8462
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -116,14 +116,14 @@ <h1>{{ filters.make_title() }}</h1>
</ul>
</div>

{% for month in months %}
<h2>{{ month.name() }}</h2>
<table>
{% for event in month.events %}
{% include "shared/event.html" %}
{% for month in months %}
<h2>{{ month.name() }}</h2>
{% for event in month.events %}
{% include "shared/event.html" %}
{% endfor %}
{% endfor %}
</table>
{% endfor %}

<p>
<a href="/bands">All bands</a> |
Expand Down

0 comments on commit fde8462

Please sign in to comment.