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,