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

134 lines
5.5 KiB
Text
Raw Normal View History

2019-09-04 21:01:54 +05:30
- page_title _('Preferences')
2017-09-10 17:25:29 +05:30
- @content_class = "limit-container-width" unless fluid_layout
2015-09-25 12:07:36 +05:30
2017-08-17 22:00:37 +05:30
= form_for @user, url: profile_preferences_path, remote: true, method: :put, html: { class: 'row prepend-top-default js-preferences-form' } do |f|
2018-03-17 18:26:18 +05:30
.col-lg-4.application-theme
%h4.prepend-top-0
2018-11-08 19:23:39 +05:30
= s_('Preferences|Navigation theme')
2019-09-04 21:01:54 +05:30
%p
= s_('Preferences|Customize the appearance of the application header and navigation sidebar.')
2018-03-17 18:26:18 +05:30
.col-lg-8.application-theme
- Gitlab::Themes.each do |theme|
= label_tag do
2018-11-08 19:23:39 +05:30
.preview{ class: theme.css_class }
2018-03-17 18:26:18 +05:30
= f.radio_button :theme_id, theme.id, checked: Gitlab::Themes.for_user(@user).id == theme.id
= theme.name
.col-sm-12
%hr
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-09-04 21:01:54 +05:30
= s_('Preferences|Syntax highlighting theme')
2016-06-02 11:05:42 +05:30
%p
2019-09-04 21:01:54 +05:30
= s_('Preferences|This setting allows you to customize the appearance of the syntax.')
2017-08-17 22:00:37 +05:30
= succeed '.' do
2019-09-04 21:01:54 +05:30
= link_to _('Learn more'), help_page_path('user/profile/preferences', anchor: 'syntax-highlighting-theme'), target: '_blank'
2017-09-10 17:25:29 +05:30
.col-lg-8.syntax-theme
2016-06-02 11:05:42 +05:30
- Gitlab::ColorSchemes.each do |scheme|
= label_tag do
.preview= image_tag "#{scheme.css_class}-scheme-preview.png"
= f.radio_button :color_scheme_id, scheme.id
= scheme.name
2018-03-17 18:26:18 +05:30
2016-06-02 11:05:42 +05:30
.col-sm-12
%hr
2018-03-17 18:26:18 +05:30
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-09-04 21:01:54 +05:30
= s_('Preferences|Behavior')
2016-06-02 11:05:42 +05:30
%p
2019-09-04 21:01:54 +05:30
= s_('Preferences|This setting allows you to customize the behavior of the system layout and default views.')
2017-08-17 22:00:37 +05:30
= succeed '.' do
2019-09-04 21:01:54 +05:30
= link_to _('Learn more'), help_page_path('user/profile/preferences', anchor: 'behavior'), target: '_blank'
2017-09-10 17:25:29 +05:30
.col-lg-8
2016-06-02 11:05:42 +05:30
.form-group
2018-11-18 11:00:15 +05:30
= f.label :layout, class: 'label-bold' do
2019-09-04 21:01:54 +05:30
= s_('Preferences|Layout width')
2019-10-12 21:52:04 +05:30
= f.select :layout, layout_choices, {}, class: 'select2'
2018-11-08 19:23:39 +05:30
.form-text.text-muted
2019-10-12 21:52:04 +05:30
= s_('Preferences|Choose between fixed (max. 1280px) and fluid (%{percentage}) application layout.').html_safe % { percentage: '100%' }
2016-06-02 11:05:42 +05:30
.form-group
2018-11-18 11:00:15 +05:30
= f.label :dashboard, class: 'label-bold' do
2019-09-04 21:01:54 +05:30
= s_('Preferences|Default dashboard')
2019-10-12 21:52:04 +05:30
= f.select :dashboard, dashboard_choices, {}, class: 'select2'
2019-03-02 22:35:43 +05:30
= render_if_exists 'profiles/preferences/group_overview_selector', f: f # EE-specific
2016-06-02 11:05:42 +05:30
.form-group
2018-11-18 11:00:15 +05:30
= f.label :project_view, class: 'label-bold' do
2019-09-04 21:01:54 +05:30
= s_('Preferences|Project overview content')
2019-10-12 21:52:04 +05:30
= f.select :project_view, project_view_choices, {}, class: 'select2'
2018-11-08 19:23:39 +05:30
.form-text.text-muted
2019-09-04 21:01:54 +05:30
= s_('Preferences|Choose what content you want to see on a projects overview page.')
2020-03-13 15:44:24 +05:30
.form-group.form-check
= f.check_box :render_whitespace_in_code, class: 'form-check-input'
= f.label :render_whitespace_in_code, class: 'form-check-label' do
= s_('Preferences|Render whitespace characters in the Web IDE')
2019-12-04 20:38:33 +05:30
.form-group.form-check
= f.check_box :show_whitespace_in_diffs, class: 'form-check-input'
= f.label :show_whitespace_in_diffs, class: 'form-check-label' do
2020-03-13 15:44:24 +05:30
= s_('Preferences|Show whitespace changes in diffs')
.form-group
= f.label :tab_width, s_('Preferences|Tab width'), class: 'label-bold'
= f.number_field :tab_width,
class: 'form-control',
min: Gitlab::TabWidth::MIN,
max: Gitlab::TabWidth::MAX,
required: true
.form-text.text-muted
= s_('Preferences|Must be a number between %{min} and %{max}') % { min: Gitlab::TabWidth::MIN, max: Gitlab::TabWidth::MAX }
2019-03-02 22:35:43 +05:30
.col-sm-12
%hr
.col-lg-4.profile-settings-sidebar
%h4.prepend-top-0
= _('Localization')
%p
= _('Customize language and region related settings.')
= succeed '.' do
= link_to _('Learn more'), help_page_path('user/profile/preferences', anchor: 'localization'), target: '_blank'
.col-lg-8
2019-07-07 11:18:12 +05:30
.form-group
= f.label :preferred_language, class: 'label-bold' do
= _('Language')
= f.select :preferred_language, language_choices, {}, class: 'select2'
.form-text.text-muted
= s_('Preferences|This feature is experimental and translations are not complete yet')
2019-03-02 22:35:43 +05:30
.form-group
= f.label :first_day_of_week, class: 'label-bold' do
= _('First day of the week')
2019-10-12 21:52:04 +05:30
= f.select :first_day_of_week, first_day_of_week_choices_with_default, {}, class: 'select2'
2019-07-31 22:56:46 +05:30
- if Feature.enabled?(:user_time_settings)
.col-sm-12
%hr
.col-lg-4.profile-settings-sidebar
%h4.prepend-top-0= s_('Preferences|Time preferences')
%p= s_('Preferences|These settings will update how dates and times are displayed for you.')
.col-lg-8
.form-group
%h5= s_('Preferences|Time format')
2019-09-30 21:07:59 +05:30
.checkbox-icon-inline-wrapper
2019-07-31 22:56:46 +05:30
- time_format_label = capture do
= s_('Preferences|Display time in 24-hour format')
2019-09-30 21:07:59 +05:30
= f.check_box :time_format_in_24h
2019-07-31 22:56:46 +05:30
= f.label :time_format_in_24h do
= time_format_label
%h5= s_('Preferences|Time display')
2019-09-30 21:07:59 +05:30
.checkbox-icon-inline-wrapper
2019-07-31 22:56:46 +05:30
- time_display_label = capture do
= s_('Preferences|Use relative times')
2019-09-30 21:07:59 +05:30
= f.check_box :time_display_relative
2019-07-31 22:56:46 +05:30
= f.label :time_display_relative do
= time_display_label
2019-09-30 21:07:59 +05:30
.form-text.text-muted
= s_('Preferences|For example: 30 mins ago.')
2019-12-26 22:10:19 +05:30
= render 'sourcegraph', f: f
2019-07-31 22:56:46 +05:30
.col-lg-4.profile-settings-sidebar
.col-lg-8
2016-06-02 11:05:42 +05:30
.form-group
2019-03-02 22:35:43 +05:30
= f.submit _('Save changes'), class: 'btn btn-success'