about summary refs log tree commit diff
path: root/app/views/admin/settings/index.html.haml
blob: 02faac8c26a7193b1672605108e35c3340a1b85e (plain) (blame)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
- content_for :page_title do
  Site Settings

%table.table
  %colgroup
    %col{ width: '35%' }/
  %thead
    %tr
      %th Setting
      %th Click to edit
  %tbody
    %tr
      %td{ rowspan: 2 }
        %strong Contact information
      %td= best_in_place @settings['site_contact_username'], :value, url: admin_setting_path(@settings['site_contact_username']), place_holder: 'Enter a username'
    %tr
      %td= best_in_place @settings['site_contact_email'], :value, url: admin_setting_path(@settings['site_contact_email']), place_holder: 'Enter a public e-mail address'
    %tr
      %td
        %strong Site title
      %td= best_in_place @settings['site_title'], :value, url: admin_setting_path(@settings['site_title'])
    %tr
      %td
        %strong Site description
        %br/
        Displayed as a paragraph on the frontpage and used as a meta tag.
        %br/
        You can use HTML tags, in particular
        %code= '<a>'
        and
        %code= '<em>'
      %td= best_in_place @settings['site_description'], :value, as: :textarea, url: admin_setting_path(@settings['site_description'])
    %tr
      %td
        %strong Extended site description
        %br/
        Displayed on extended information page
        %br/
        You can use HTML tags
      %td= best_in_place @settings['site_extended_description'], :value, as: :textarea, url: admin_setting_path(@settings['site_extended_description'])
    %tr
      %td
        %strong Open registration
      %td= best_in_place @settings['open_registrations'], :value, as: :checkbox, collection: { false: 'Disabled', true: 'Enabled'}, url: admin_setting_path(@settings['open_registrations'])
    %tr
      %td
        %strong Closed registration message
        %br/
        Displayed on frontpage when registrations are closed
        %br/
        You can use HTML tags
      %td= best_in_place @settings['closed_registrations_message'], :value, as: :textarea, url: admin_setting_path(@settings['closed_registrations_message'])