Consistent ordering and formatting for talk events

Use a consistent format for talk events, with the most recent talk at
the top of the list with the rest in a descending order.

This removes the need to use a `reverse` filter in the events partial.
This commit is contained in:
Oliver Davies 2024-01-15 19:37:48 +00:00
parent a8cf50cdc4
commit f33e9beaa4
39 changed files with 371 additions and 345 deletions

View file

@ -3,7 +3,7 @@
<h2>Events</h2>
<ul>
{% for event in events|reverse %}
{% for event in events %}
<li>
{% if event.url %}
<a href="{{ event.url }}">{{ event.name }}</a>