Skip to content
This repository has been archived by the owner on Sep 19, 2018. It is now read-only.

Reverse the order of events #412

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions web/templates/pages/list_events.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ <h2>{{status|title}} events in {{country_name}}</h2>
</div>
</div>
<div class="row">
{% paginate 6 cl.list as country_events %}
{% paginate 6 cl.list.reverse() as country_events %}
{% for event in country_events %}
{% include 'layout/event_tile.html' %}
{% endfor %}
Expand All @@ -56,4 +56,4 @@ <h2>{{status|title}} events in {{country_name}}</h2>
</div>
</div>

{% endblock content %}
{% endblock content %}