@row>
<@columns>
<@box color='success'>
<@boxHeader title=' ${user.lastName} ${user.firstName}' boxTools=true>
<@item_navigation item_navigator=item_navigator />
@boxHeader>
<@boxBody>
<@tabs>
<@listTabs>
#i18n{portal.users.actions.labelUser}
<#if defaultModeUsed>#i18n{portal.users.actions.labelPassword}#if>
#i18n{portal.users.actions.labelRights}
#i18n{portal.users.actions.labelRoles}
#i18n{portal.users.actions.labelWorkgroups}
@listTabs>
<@tabContent>
<@tform role='form' method='post' action='jsp/admin/user/DoModifyUserRoles.jsp'>
<@row>
<@columns>
<@listGroup>
<#list all_role_list?sort_by('key') as role>
<#assign checked = false >
<#list user_role_list as user_role>
<#if user_role.key = role.key >
<#assign checked = true>
<#break>
#if>
#list>
<@checkBox name='roles' value='${role.key}' labelKey='${role.key} - ${role.description}' checked=checked mandatory=false />
#list>
@listGroup>
@columns>
@row>
<@formGroup rows=2>
<@button type='submit' buttonIcon='check' title='#i18n{portal.users.modify_user_roles.buttonLabelModifyRoles}' size='' />
<@aButton size='' href='jsp/admin/user/ManageUsers.jsp' color='btn-secondary' buttonIcon='times' title='#i18n{portal.util.labelBack}' />
@formGroup>
@tform>
@tabContent>
@tabs>
@boxBody>
@box>
@columns>
@row>