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

_system_header_footer_form.html.haml « appearances « application_settings « admin « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4571d34a497673bb112b26e0420ba99d85cd5f97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
- form = local_assigns.fetch(:form)

%hr
.row
  .col-lg-4.profile-settings-sidebar
    %h4.gl-mt-0
      = _('System header and footer')

  .col-lg-8
    .form-group
      = form.label :header_message, _('Header message'), class: 'col-form-label label-bold'
      = form.text_area :header_message, placeholder: _('State your message to activate'), class: "form-control gl-form-input js-autosize"
    .form-group
      = form.label :footer_message, _('Footer message'), class: 'col-form-label label-bold'
      = form.text_area :footer_message, placeholder: _('State your message to activate'), class: "form-control gl-form-input js-autosize"
    .form-group
      .form-check
        = form.check_box :email_header_and_footer_enabled, class: 'form-check-input'
        = form.label :email_header_and_footer_enabled, class: 'label-bold' do
          = _('Enable header and footer in emails')

        .hint
          = _('Add header and footer to emails. Please note that color settings will only be applied within the application interface')

    .form-group.js-toggle-colors-container
      %button.btn.gl-button.btn-link.js-toggle-colors-link{ type: 'button' }
        = _('Customize colors')
    .form-group.js-toggle-colors-container.hide
      = form.label :message_background_color, _('Background Color'), class: 'col-form-label label-bold'
      = form.color_field :message_background_color, class: "form-control gl-form-input"
    .form-group.js-toggle-colors-container.hide
      = form.label :message_font_color, _('Font Color'), class: 'col-form-label label-bold'
      = form.color_field :message_font_color, class: "form-control gl-form-input"