<@row> <@columns> <@box> <@boxHeader title='#i18n{portal.workgroup.manage_workgroups.pageTitle}'> <@aButton href='jsp/admin/workgroup/CreateWorkgroup.jsp' buttonIcon='plus' title='#i18n{portal.workgroup.manage_workgroups.buttonLabelNewGroup}' hideTitle=['xs'] size='sm' /> <@button style='card-control collapse' buttonTargetId='#workgroupSearch' buttonIcon='search' size='sm' /> <@boxBody> <@tform method='post' name='search_workgroups' action='jsp/admin/workgroup/ManageWorkgroups.jsp' id='workgroupSearch' class='collapse'> <@fieldSet legend='#i18n{portal.workgroup.manage_workgroups.search_workgroups.buttonSearch}'> <@formGroup labelKey='#i18n{portal.workgroup.manage_workgroups.search_workgroups.labelKey}' labelFor='key'> <@input type='text' id='key' name='search_key' value='${search_admin_workgroup_filter.key}' maxlength=50 inputSize=10 /> <@formGroup labelKey='#i18n{portal.workgroup.manage_workgroups.search_workgroups.labelDescription}' labelFor='description'> <@input type='text' id='description' name='search_description' value='${search_admin_workgroup_filter.description}' maxlength=50 inputSize=30 /> <@formGroup> <@button type='submit' buttonIcon='search' title='#i18n{portal.workgroup.manage_workgroups.search_workgroups.buttonSearch}' /> <@tform method='post' action='jsp/admin/workgroup/ManageWorkgroups.jsp'> <@paginationAdmin paginator=paginator combo=1 form=0 /> <#if search_is_search > <@input type='hidden' name='search_is_search' value='true' /> <@input type='hidden' name='search_key' value='${search_admin_workgroup_filter.key}' /> <@input type='hidden' name='search_description' value='${search_admin_workgroup_filter.description}' /> <@table> <@tr> <@th>#i18n{portal.workgroup.manage_workgroups.columnTitleKey} <@sort jsp_url="jsp/admin/workgroup/ManageWorkgroups.jsp" attribute="key${sort_search_attribute}" /> <@th>#i18n{portal.workgroup.manage_workgroups.columnTitleDescription} <@sort jsp_url="jsp/admin/workgroup/ManageWorkgroups.jsp" attribute="description${sort_search_attribute}" /> <@th>#i18n{portal.workgroup.manage_workgroups.columnTitleActions} <#list workgroups_list as workgroup > <@tr> <@td>${workgroup.key} <@td>${workgroup.description} <@td> <@aButton href='jsp/admin/workgroup/ModifyWorkgroup.jsp?workgroup_key=${workgroup.key}' title='#i18n{portal.workgroup.manage_workgroups.buttonLabelModify} (${workgroup.key})' buttonIcon='edit' hideTitle=['all'] size='sm' /> <@aButton href='jsp/admin/workgroup/AssignUsersWorkgroup.jsp?workgroup_key=${workgroup.key}' title='#i18n{portal.workgroup.manage_workgroups.buttonLabelAssignUsers} (${workgroup.key})' buttonIcon='user' hideTitle=['all'] size='sm' /> <@aButton href='jsp/admin/workgroup/RemoveWorkgroup.jsp?workgroup_key=${workgroup.key}' title='#i18n{portal.workgroup.manage_workgroups.buttonLabelDelete} (${workgroup.key})' buttonIcon='trash' hideTitle=['all'] color='danger' size='sm' /> <@paginationAdmin paginator=paginator />