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

63 lines
2.6 KiB
Text
Raw Normal View History

2017-08-17 22:00:37 +05:30
%fieldset
2020-07-28 23:09:34 +05:30
%legend
= s_('AdminUsers|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
2021-03-11 19:13:27 +05:30
= f.number_field :projects_limit, min: 0, max: Gitlab::Database::MAX_INT_VALUE, class: 'form-control gl-form-input'
2017-08-17 22:00:37 +05:30
2018-11-08 19:23:39 +05:30
.form-group.row
2020-07-28 23:09:34 +05:30
.col-sm-2.col-form-label.gl-pt-0
2019-09-04 21:01:54 +05:30
= 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
2020-07-28 23:09:34 +05:30
.col-sm-2.col-form-label.gl-pt-0
2019-09-04 21:01:54 +05:30
= f.label :access_level
2017-08-17 22:00:37 +05:30
.col-sm-10
- editing_current_user = (current_user == @user)
2021-11-18 22:05:49 +05:30
= f.gitlab_ui_radio_component :access_level, :regular,
s_('AdminUsers|Regular'),
radio_options: { disabled: editing_current_user },
help_text: s_('AdminUsers|Regular users have access to their groups and projects.')
2017-08-17 22:00:37 +05:30
2019-09-04 21:01:54 +05:30
= render_if_exists 'admin/users/auditor_access_level_radio', f: f, disabled: editing_current_user
2021-11-18 22:05:49 +05:30
- help_text = s_('AdminUsers|Administrators have access to all groups, projects and users and can manage all features in this installation.')
- help_text += ' ' + s_('AdminUsers|You cannot remove your own admin rights.') if editing_current_user
= f.gitlab_ui_radio_component :access_level, :admin,
s_('AdminUsers|Admin'),
radio_options: { disabled: editing_current_user },
help_text: help_text
2017-08-17 22:00:37 +05:30
2018-11-08 19:23:39 +05:30
.form-group.row
2020-07-28 23:09:34 +05:30
.col-sm-2.col-form-label.gl-pt-0
2019-09-04 21:01:54 +05:30
= f.label :external
2018-11-20 20:47:30 +05:30
.hidden{ data: user_internal_regex_data }
2020-07-28 23:09:34 +05:30
.col-sm-10.gl-display-flex.gl-align-items-baseline
2017-08-17 22:00:37 +05:30
= f.check_box :external do
2020-07-28 23:09:34 +05:30
= s_('AdminUsers|External')
%p.light.gl-pl-2
= s_('AdminUsers|External users cannot see internal or private projects unless access is explicitly granted. Also, external users cannot create projects, groups, or personal snippets.')
2018-11-20 20:47:30 +05:30
%row.hidden#warning_external_automatically_set.hidden
.badge.badge-warning.text-white
2020-07-28 23:09:34 +05:30
= s_('AdminUsers|Automatically marked as default internal user')
2021-09-04 01:27:46 +05:30
.form-group.row
- @user.credit_card_validation || @user.build_credit_card_validation
= f.fields_for :credit_card_validation do |ff|
.col-sm-2.col-form-label.gl-pt-0
= ff.label s_("AdminUsers|Validate user account")
.col-sm-10.gl-display-flex.gl-align-items-baseline
= ff.check_box :credit_card_validated_at, checked: @user.credit_card_validated_at.present?
.gl-pl-2
.light
= s_('AdminUsers|User is validated and can use free CI minutes on shared runners.')
.gl-text-gray-600
= s_('AdminUsers|A user can validate themselves by inputting a credit/debit card, or an admin can manually validate a user.')