debian-mirror-gitlab/app/views/profiles/accounts/show.html.haml

76 lines
3 KiB
Text
Raw Normal View History

2019-03-02 22:35:43 +05:30
- page_title _('Account')
2017-09-10 17:25:29 +05:30
- @content_class = "limit-container-width" unless fluid_layout
2015-09-25 12:07:36 +05:30
2015-04-26 12:48:37 +05:30
- if current_user.ldap_user?
.alert.alert-info
2019-03-02 22:35:43 +05:30
= s_('Profiles|Some options are unavailable for LDAP accounts')
2014-09-02 18:07:02 +05:30
2016-06-02 11:05:42 +05:30
.row.prepend-top-default
2017-09-10 17:25:29 +05:30
.col-lg-4.profile-settings-sidebar
2016-06-02 11:05:42 +05:30
%h4.prepend-top-0
2019-03-02 22:35:43 +05:30
= s_('Profiles|Two-Factor Authentication')
2016-06-02 11:05:42 +05:30
%p
2019-03-02 22:35:43 +05:30
= s_("Profiles|Increase your account's security by enabling Two-Factor Authentication (2FA)")
2017-09-10 17:25:29 +05:30
.col-lg-8
2016-06-02 11:05:42 +05:30
%p
2019-03-02 22:35:43 +05:30
#{_('Status')}: #{current_user.two_factor_enabled? ? _('Enabled') : _('Disabled')}
- if current_user.two_factor_enabled?
2019-03-02 22:35:43 +05:30
= link_to _('Manage two-factor authentication'), profile_two_factor_auth_path, class: 'btn btn-info'
2016-06-02 11:05:42 +05:30
- else
.append-bottom-10
2019-03-02 22:35:43 +05:30
= link_to _('Enable two-factor authentication'), profile_two_factor_auth_path, class: 'btn btn-success'
2016-06-02 11:05:42 +05:30
%hr
2019-02-15 15:39:39 +05:30
- if display_providers_on_profile?
2016-06-02 11:05:42 +05:30
.row.prepend-top-default
2017-09-10 17:25:29 +05:30
.col-lg-4.profile-settings-sidebar
2016-06-02 11:05:42 +05:30
%h4.prepend-top-0
2019-03-02 22:35:43 +05:30
= s_('Profiles|Social sign-in')
2016-06-02 11:05:42 +05:30
%p
2019-03-02 22:35:43 +05:30
= s_('Profiles|Activate signin with one of the following services')
2017-09-10 17:25:29 +05:30
.col-lg-8
2019-07-07 11:18:12 +05:30
= render 'providers', providers: button_based_providers, group_saml_identities: local_assigns[:group_saml_identities]
2016-06-02 11:05:42 +05:30
%hr
- if current_user.can_change_username?
.row.prepend-top-default
2017-09-10 17:25:29 +05:30
.col-lg-4.profile-settings-sidebar
%h4.prepend-top-0.warning-title
2019-03-02 22:35:43 +05:30
= s_('Profiles|Change username')
2016-06-02 11:05:42 +05:30
%p
2019-03-02 22:35:43 +05:30
= s_('Profiles|Changing your username can have unintended side effects.')
2018-03-17 18:26:18 +05:30
= succeed '.' do
2019-03-02 22:35:43 +05:30
= link_to s_('Profiles|Learn more'), help_page_path('user/profile/index', anchor: 'changing-your-username'), target: '_blank'
2017-09-10 17:25:29 +05:30
.col-lg-8
2018-05-09 12:01:36 +05:30
- data = { initial_username: current_user.username, root_url: root_url, action_url: update_username_profile_path(format: :json) }
#update-username{ data: data }
2016-06-02 11:05:42 +05:30
%hr
2014-09-02 18:07:02 +05:30
2018-03-17 18:26:18 +05:30
.row.prepend-top-default
.col-lg-4.profile-settings-sidebar
%h4.prepend-top-0.danger-title
= s_('Profiles|Delete account')
.col-lg-8
2019-02-15 15:39:39 +05:30
- if current_user.can_be_removed? && can?(current_user, :destroy_user, current_user)
2018-03-17 18:26:18 +05:30
%p
= s_('Profiles|Deleting an account has the following effects:')
= render 'users/deletion_guidance', user: current_user
%button#delete-account-button.btn.btn-danger.disabled{ data: { toggle: 'modal',
target: '#delete-account-modal' } }
= s_('Profiles|Delete account')
#delete-account-modal{ data: { action_url: user_registration_path,
confirm_with_password: ('true' if current_user.confirm_deletion_with_password?),
username: current_user.username } }
- else
2019-02-15 15:39:39 +05:30
- if current_user.solo_owned_groups.present?
2018-03-17 18:26:18 +05:30
%p
= s_('Profiles|Your account is currently an owner in these groups:')
2019-02-15 15:39:39 +05:30
%strong= current_user.solo_owned_groups.map(&:name).join(', ')
2016-06-02 11:05:42 +05:30
%p
2018-03-17 18:26:18 +05:30
= s_('Profiles|You must transfer ownership or delete these groups before you can delete your account.')
2016-06-02 11:05:42 +05:30
- else
2018-03-17 18:26:18 +05:30
%p
= s_("Profiles|You don't have access to delete this user.")
2016-06-02 11:05:42 +05:30
.append-bottom-default