From b68f819de75073285c17c28a30afe5b5dbfe5176 Mon Sep 17 00:00:00 2001 From: Petr Vobornik Date: Fri, 4 Jul 2014 13:24:47 +0200 Subject: webui: improve usability of attributes widget Attributes widget layour was changed from tiny table which allowed to display only few options to a checkbox list with multiple columns (depends on container). Check all attributes option was removed to force the user to read through the attributes which he selects. Initial version authored by: Adam Misnyovszki https://fedorahosted.org/freeipa/ticket/4253 Reviewed-By: Endi Sukma Dewata --- ipatests/test_webui/test_selfservice.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ipatests/test_webui/test_selfservice.py') diff --git a/ipatests/test_webui/test_selfservice.py b/ipatests/test_webui/test_selfservice.py index ce1971e54..15fd23d4e 100644 --- a/ipatests/test_webui/test_selfservice.py +++ b/ipatests/test_webui/test_selfservice.py @@ -30,11 +30,11 @@ DATA = { 'pkey': PKEY, 'add': [ ('textbox', 'aciname', PKEY), - ('table', 'attrs', 'audio'), - ('table', 'attrs', 'businesscategory'), + ('checkbox', 'attrs', 'audio'), + ('checkbox', 'attrs', 'businesscategory'), ], 'mod': [ - ('table', 'attrs', 'businesscategory'), + ('checkbox', 'attrs', 'businesscategory'), ], } -- cgit