Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_localization.html.haml « application_settings « admin « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e01c123d1db4183074cc61dd39c1fb477c1207d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
= form_for @application_setting, url: preferences_admin_application_settings_path(anchor: 'js-localization-settings'), html: { class: 'fieldset-form' } do |f|
  = form_errors(@application_setting)

  %fieldset
    .form-group
      = f.label :first_day_of_week, _('Default first day of the week'), class: 'label-bold'
      = f.select :first_day_of_week, first_day_of_week_choices, {}, class: 'form-control'
      .form-text.text-muted
        = _('Default first day of the week in calendars and date pickers.')

    .form-group
      = f.label :time_tracking, _('Time tracking'), class: 'label-bold'
      .form-check
        = f.check_box :time_tracking_limit_to_hours, class: 'form-check-input'
        = f.label :time_tracking_limit_to_hours, class: 'form-check-label' do
          = _('Limit display of time tracking units to hours.')

  = f.submit _('Save changes'), class: "btn btn-success"