<%namespace name="base" file="/base/base.mako"/>

${_('Repository Group Permissions')}

${h.secure_form(h.route_path('edit_repo_group_perms_update', repo_group_name=c.repo_group.group_name), request=request)} ## USERS %for _user in c.repo_group.permissions(): ## super admin/owner row %if getattr(_user, 'admin_row', None) or getattr(_user, 'owner_row', None): %else: ##forbid revoking permission from yourself, except if you're an super admin %if c.rhodecode_user.user_id != _user.user_id or c.rhodecode_user.is_admin: %else: ## special case for currently logged-in user permissions, we make sure he cannot take his own permissions %endif %endif %endfor ## USER GROUPS %for _user_group in c.repo_group.permission_user_groups(with_members=True): %endfor
${_('None')} ${_('Read')} ${_('Write')} ${_('Admin')} ${_('User/User Group')}
${h.radio('admin_perm_%s' % _user.user_id,'repository.none', disabled="disabled")} ${h.radio('admin_perm_%s' % _user.user_id,'repository.read', disabled="disabled")} ${h.radio('admin_perm_%s' % _user.user_id,'repository.write', disabled="disabled")} ${h.radio('admin_perm_%s' % _user.user_id,'repository.admin', 'repository.admin', disabled="disabled")} ${base.gravatar(_user.email, 16)} ${h.link_to_user(_user.username)} %if getattr(_user, 'admin_row', None): (${_('super admin')}) %endif %if getattr(_user, 'owner_row', None): (${_('owner')}) %endif % if c.rhodecode_user.is_admin: % endif
${h.radio('u_perm_%s' % _user.user_id,'group.none', checked=_user.permission=='group.none')} ${h.radio('u_perm_%s' % _user.user_id,'group.read', checked=_user.permission=='group.read')} ${h.radio('u_perm_%s' % _user.user_id,'group.write', checked=_user.permission=='group.write')} ${h.radio('u_perm_%s' % _user.user_id,'group.admin', checked=_user.permission=='group.admin')} ${base.gravatar(_user.email, 16)} % if _user.username == h.DEFAULT_USER: ${h.DEFAULT_USER} - ${_('permission for all other users')} % else: ${h.link_to_user(_user.username)} %if getattr(_user, 'duplicate_perm', None): (${_('inactive duplicate')}) %endif % endif %if _user.username != h.DEFAULT_USER: ${_('Remove')} %endif % if c.rhodecode_user.is_admin: % endif ${h.radio('u_perm_%s' % _user.user_id,'group.none', disabled="disabled")} ${h.radio('u_perm_%s' % _user.user_id,'group.read', disabled="disabled")} ${h.radio('u_perm_%s' % _user.user_id,'group.write', disabled="disabled")} ${h.radio('u_perm_%s' % _user.user_id,'group.admin', disabled="disabled")} ${base.gravatar(_user.email, 16)} % if _user.username == h.DEFAULT_USER: ${h.DEFAULT_USER} - ${_('permission for all other users')} % else: ${h.link_to_user(_user.username)} %if getattr(_user, 'duplicate_perm', None): (${_('inactive duplicate')}) %endif % endif (${_('delegated admin')}) % if c.rhodecode_user.is_admin: % endif
${h.radio('g_perm_%s' % _user_group.users_group_id,'group.none', checked=_user_group.permission=='group.none')} ${h.radio('g_perm_%s' % _user_group.users_group_id,'group.read', checked=_user_group.permission=='group.read')} ${h.radio('g_perm_%s' % _user_group.users_group_id,'group.write', checked=_user_group.permission=='group.write')} ${h.radio('g_perm_%s' % _user_group.users_group_id,'group.admin', checked=_user_group.permission=='group.admin')} %if h.HasPermissionAny('hg.admin')(): ${_user_group.users_group_name} %else: ${h.link_to_group(_user_group.users_group_name)} %endif (${_('members')}: ${len(_user_group.members)}) ${_('Remove')} % if c.rhodecode_user.is_admin: % endif
${_('Add user/user group')}
${_('Apply to children')}:
${h.radio('recursive', 'none', label=_('None'), checked="checked")} ${h.radio('recursive', 'groups', label=_('Repository Groups'))} ${h.radio('recursive', 'repos', label=_('Repositories'))} ${h.radio('recursive', 'all', label=_('Both'))} ${_('Set or revoke permissions to selected types of children of this group, including non-private repositories and other groups if chosen.')}
${h.submit('save',_('Save'),class_="btn btn-primary")} ${h.reset('reset',_('Reset'),class_="btn btn-danger")}
${h.end_form()}