From f9c9b151adae0708ef3b01cd2ecb51208e0a8484 Mon Sep 17 00:00:00 2001 From: Nelson Elhage Date: Wed, 30 Dec 2009 11:05:22 -0500 Subject: [PATCH] Sort users by username. --- templates/users.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/users.tmpl b/templates/users.tmpl index 0c58f20..9971306 100644 --- a/templates/users.tmpl +++ b/templates/users.tmpl @@ -4,7 +4,7 @@ Blog link Start Week -% for u in userlist: +% for u in sorted(userlist, key=lambda u:u.username): ${u.username} -- 2.30.2