2017-05-04 09:12:44 -07:00
|
|
|
- content_for :page_title do
|
|
|
|
= t('admin.settings.title')
|
|
|
|
|
2017-07-11 18:24:04 -07:00
|
|
|
= simple_form_for @admin_settings, url: admin_settings_path, html: { method: :patch } do |f|
|
|
|
|
.fields-group
|
|
|
|
= f.input :site_title, placeholder: t('admin.settings.site_title')
|
|
|
|
= f.input :site_description, wrapper: :with_block_label, as: :text, label: t('admin.settings.site_description.title'), hint: t('admin.settings.site_description.desc_html'), input_html: { rows: 8 }
|
|
|
|
= f.input :site_contact_username, placeholder: t('admin.settings.contact_information.username')
|
|
|
|
= f.input :site_contact_email, placeholder: t('admin.settings.contact_information.email')
|
2017-05-04 09:12:44 -07:00
|
|
|
|
2017-07-11 18:24:04 -07:00
|
|
|
%hr/
|
|
|
|
|
2017-09-13 15:04:30 -07:00
|
|
|
.fields-group
|
|
|
|
= f.input :thumbnail, as: :file, wrapper: :with_block_label, label: t('admin.settings.thumbnail.title'), hint: t('admin.settings.thumbnail.desc_html')
|
|
|
|
|
|
|
|
%hr/
|
|
|
|
|
2017-07-11 18:24:04 -07:00
|
|
|
.fields-group
|
|
|
|
= f.input :timeline_preview, as: :boolean, wrapper: :with_label, label: t('admin.settings.timeline_preview.title'), hint: t('admin.settings.timeline_preview.desc_html')
|
|
|
|
|
|
|
|
.fields-group
|
|
|
|
= f.input :open_registrations, as: :boolean, wrapper: :with_label, label: t('admin.settings.registrations.open.title'), hint: t('admin.settings.registrations.open.desc_html')
|
|
|
|
|
|
|
|
.fields-group
|
|
|
|
= f.input :open_deletion, as: :boolean, wrapper: :with_label, label: t('admin.settings.registrations.deletion.title'), hint: t('admin.settings.registrations.deletion.desc_html')
|
|
|
|
|
|
|
|
.fields-group
|
|
|
|
= f.input :closed_registrations_message, as: :text, wrapper: :with_block_label, label: t('admin.settings.registrations.closed_message.title'), hint: t('admin.settings.registrations.closed_message.desc_html'), input_html: { rows: 8 }
|
|
|
|
|
|
|
|
%hr/
|
|
|
|
|
|
|
|
.fields-group
|
|
|
|
= f.input :site_extended_description, wrapper: :with_block_label, as: :text, label: t('admin.settings.site_description_extended.title'), hint: t('admin.settings.site_description_extended.desc_html'), input_html: { rows: 8 }
|
|
|
|
= f.input :site_terms, wrapper: :with_block_label, as: :text, label: t('admin.settings.site_terms.title'), hint: t('admin.settings.site_terms.desc_html'), input_html: { rows: 8 }
|
|
|
|
|
2017-09-10 00:58:38 -07:00
|
|
|
%hr/
|
|
|
|
|
|
|
|
.fields-group
|
|
|
|
= f.input :bootstrap_timeline_accounts, wrapper: :with_block_label, label: t('admin.settings.bootstrap_timeline_accounts.title'), hint: t('admin.settings.bootstrap_timeline_accounts.desc_html')
|
|
|
|
|
2017-07-11 18:24:04 -07:00
|
|
|
.actions
|
|
|
|
= f.button :button, t('generic.save_changes'), type: :submit
|