From 62a01fe61f78ee5d04d41870ae8c56d4869fcd60 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Sat, 5 Jul 2014 18:46:21 +0200 Subject: reverse the list of users --- pyaggr3g470r/templates/admin/dashboard.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pyaggr3g470r/templates/admin/dashboard.html') diff --git a/pyaggr3g470r/templates/admin/dashboard.html b/pyaggr3g470r/templates/admin/dashboard.html index 6d87b326..5e774650 100644 --- a/pyaggr3g470r/templates/admin/dashboard.html +++ b/pyaggr3g470r/templates/admin/dashboard.html @@ -16,7 +16,7 @@ - {% for user in users|sort(attribute="last_seen") %} + {% for user in users|sort(attribute="last_seen")|reverse %} {{ loop.index }} {% if user.id == current_user.id %} -- cgit