debian-mirror-gitlab/app/views/admin/users/_access_levels.html.haml

50 lines
1.7 KiB
Text
Raw Normal View History

2017-08-17 22:00:37 +05:30
%fieldset
%legend Access
2018-11-08 19:23:39 +05:30
.form-group.row
2019-09-04 21:01:54 +05:30
.col-sm-2.col-form-label
= f.label :projects_limit
.col-sm-10
= f.number_field :projects_limit, min: 0, max: Gitlab::Database::MAX_INT_VALUE, class: 'form-control'
2017-08-17 22:00:37 +05:30
2018-11-08 19:23:39 +05:30
.form-group.row
2019-09-04 21:01:54 +05:30
.col-sm-2.col-form-label
= f.label :can_create_group
.col-sm-10
= f.check_box :can_create_group
2017-08-17 22:00:37 +05:30
2018-11-08 19:23:39 +05:30
.form-group.row
2019-09-04 21:01:54 +05:30
.col-sm-2.col-form-label
= f.label :access_level
2017-08-17 22:00:37 +05:30
.col-sm-10
- editing_current_user = (current_user == @user)
= f.radio_button :access_level, :regular, disabled: editing_current_user
2019-10-12 21:52:04 +05:30
= f.label :access_level_regular, class: 'font-weight-bold' do
2017-08-17 22:00:37 +05:30
Regular
%p.light
Regular users have access to their groups and projects
2019-09-04 21:01:54 +05:30
= render_if_exists 'admin/users/auditor_access_level_radio', f: f, disabled: editing_current_user
2017-08-17 22:00:37 +05:30
= f.radio_button :access_level, :admin, disabled: editing_current_user
2019-10-12 21:52:04 +05:30
= f.label :access_level_admin, class: 'font-weight-bold' do
2017-08-17 22:00:37 +05:30
Admin
%p.light
Administrators have access to all groups, projects and users and can manage all features in this installation
- if editing_current_user
%p.light
You cannot remove your own admin rights.
2018-11-08 19:23:39 +05:30
.form-group.row
2019-09-04 21:01:54 +05:30
.col-sm-2.col-form-label
= f.label :external
2018-11-20 20:47:30 +05:30
.hidden{ data: user_internal_regex_data }
2017-08-17 22:00:37 +05:30
.col-sm-10
= f.check_box :external do
External
%p.light
External users cannot see internal or private projects unless access is explicitly granted. Also, external users cannot create projects or groups.
2018-11-20 20:47:30 +05:30
%row.hidden#warning_external_automatically_set.hidden
.badge.badge-warning.text-white
= _('Automatically marked as default internal user')