2015-06-10 04:42:02 -04:00
|
|
|
|
- page_title 'Preferences'
|
2017-06-22 10:47:50 -04:00
|
|
|
|
- @content_class = "limit-container-width" unless fluid_layout
|
2015-09-09 17:05:47 -04:00
|
|
|
|
|
2016-12-26 05:47:16 -05:00
|
|
|
|
= form_for @user, url: profile_preferences_path, remote: true, method: :put, html: { class: 'row prepend-top-default js-preferences-form' } do |f|
|
2017-09-11 11:44:42 -04:00
|
|
|
|
.col-lg-4.application-theme
|
|
|
|
|
%h4.prepend-top-0
|
2018-06-04 14:57:26 -04:00
|
|
|
|
= s_('Preferences|Navigation theme')
|
2017-09-11 11:44:42 -04:00
|
|
|
|
%p Customize the appearance of the application header and navigation sidebar.
|
|
|
|
|
.col-lg-8.application-theme
|
|
|
|
|
- Gitlab::Themes.each do |theme|
|
|
|
|
|
= label_tag do
|
2018-06-07 03:37:02 -04:00
|
|
|
|
.preview{ class: theme.css_class }
|
2017-09-13 18:29:50 -04:00
|
|
|
|
= f.radio_button :theme_id, theme.id, checked: Gitlab::Themes.for_user(@user).id == theme.id
|
2017-09-11 11:44:42 -04:00
|
|
|
|
= theme.name
|
|
|
|
|
|
|
|
|
|
.col-sm-12
|
|
|
|
|
%hr
|
|
|
|
|
|
2017-06-22 10:47:50 -04:00
|
|
|
|
.col-lg-4.profile-settings-sidebar
|
2016-03-01 03:59:49 -05:00
|
|
|
|
%h4.prepend-top-0
|
2015-06-05 18:13:12 -04:00
|
|
|
|
Syntax highlighting theme
|
2016-03-01 03:59:49 -05:00
|
|
|
|
%p
|
2017-03-22 12:19:15 -04:00
|
|
|
|
This setting allows you to customize the appearance of the syntax.
|
|
|
|
|
= succeed '.' do
|
|
|
|
|
= link_to 'Learn more', help_page_path('user/profile/preferences', anchor: 'syntax-highlighting-theme'), target: '_blank'
|
2017-06-22 10:47:50 -04:00
|
|
|
|
.col-lg-8.syntax-theme
|
2016-03-01 03:59:49 -05:00
|
|
|
|
- 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
|
2017-09-07 18:25:57 -04:00
|
|
|
|
|
2017-07-04 09:43:01 -04:00
|
|
|
|
.col-sm-12
|
|
|
|
|
%hr
|
2017-09-07 18:25:57 -04:00
|
|
|
|
|
2017-06-22 10:47:50 -04:00
|
|
|
|
.col-lg-4.profile-settings-sidebar
|
2016-03-01 03:59:49 -05:00
|
|
|
|
%h4.prepend-top-0
|
2015-06-10 04:42:02 -04:00
|
|
|
|
Behavior
|
2016-03-01 03:59:49 -05:00
|
|
|
|
%p
|
2016-05-24 11:04:43 -04:00
|
|
|
|
This setting allows you to customize the behavior of the system layout and default views.
|
2017-03-22 12:19:15 -04:00
|
|
|
|
= succeed '.' do
|
|
|
|
|
= link_to 'Learn more', help_page_path('user/profile/preferences', anchor: 'behavior'), target: '_blank'
|
2017-06-22 10:47:50 -04:00
|
|
|
|
.col-lg-8
|
2016-03-01 03:59:49 -05:00
|
|
|
|
.form-group
|
2018-07-19 18:11:31 -04:00
|
|
|
|
= f.label :layout, class: 'label-bold' do
|
2016-03-01 03:59:49 -05:00
|
|
|
|
Layout width
|
|
|
|
|
= f.select :layout, layout_choices, {}, class: 'form-control'
|
2018-04-11 14:26:37 -04:00
|
|
|
|
.form-text.text-muted
|
2018-10-30 13:10:00 -04:00
|
|
|
|
Choose between fixed (max. 1280px) and fluid (100%) application layout.
|
2016-03-01 03:59:49 -05:00
|
|
|
|
.form-group
|
2018-07-19 18:11:31 -04:00
|
|
|
|
= f.label :dashboard, class: 'label-bold' do
|
2017-03-22 12:19:15 -04:00
|
|
|
|
Default dashboard
|
2016-03-01 03:59:49 -05:00
|
|
|
|
= f.select :dashboard, dashboard_choices, {}, class: 'form-control'
|
|
|
|
|
.form-group
|
2018-07-19 18:11:31 -04:00
|
|
|
|
= f.label :project_view, class: 'label-bold' do
|
2017-08-04 11:13:14 -04:00
|
|
|
|
Project overview content
|
2016-03-01 03:59:49 -05:00
|
|
|
|
= f.select :project_view, project_view_choices, {}, class: 'form-control'
|
2018-04-11 14:26:37 -04:00
|
|
|
|
.form-text.text-muted
|
2018-10-30 13:10:00 -04:00
|
|
|
|
Choose what content you want to see on a project’s overview page.
|
2016-03-01 03:59:49 -05:00
|
|
|
|
.form-group
|
2018-09-18 05:58:22 -04:00
|
|
|
|
= f.submit 'Save changes', class: 'btn btn-success'
|