From 4f2ec3291267a2d1bdbd96097ddd4b3b940c2793 Mon Sep 17 00:00:00 2001 From: Marcus -Chaosblog Date: Mon, 11 Feb 2013 13:09:08 +0100 Subject: [PATCH] Use skipped_users for skipped tag user.skip is true if the user was has ever been skipped skipped_users contains all current skipped users --- templates/users.tmpl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/users.tmpl b/templates/users.tmpl index 2f0a798..f79a64e 100644 --- a/templates/users.tmpl +++ b/templates/users.tmpl @@ -4,7 +4,7 @@ Twitter Blog link Start Week - Skipped Weeks +   % for u in sorted(userlist, key=lambda u:u.username): @@ -28,8 +28,8 @@ % if u.end: Punted
% endif - % if u.skip: - ${u.skip} + % if u in skipped_users: + Skipped % endif