From 93bd4f2ff85293658035212af43ccafb2f5b7460 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 11 Sep 2012 04:23:21 -0400 Subject: [PATCH] Fix active and usable password column icons --- apps/user_management/views.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/user_management/views.py b/apps/user_management/views.py index b9d155037f..ce4121b66b 100644 --- a/apps/user_management/views.py +++ b/apps/user_management/views.py @@ -41,11 +41,11 @@ def user_list(request): }, { 'name': _(u'active'), - 'attribute': encapsulate(lambda x: two_state_template(x.is_active)), + 'attribute': encapsulate(lambda x: two_state_template(x.is_active).display_small()), }, { 'name': _(u'has usable password?'), - 'attribute': encapsulate(lambda x: two_state_template(x.has_usable_password())), + 'attribute': encapsulate(lambda x: two_state_template(x.has_usable_password()).display_small()), }, ], 'multi_select_as_buttons': True,