diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2017-04-04 15:26:57 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-04-04 15:28:12 +0200 |
commit | 5f54981846508daf9558f66ffd70d42d8213bea9 (patch) | |
tree | 0ccd822d4e04a3082bb4bf9adc6cdb981f05425e /app/views/admin/settings | |
parent | 405c495c234d80a036a37052841850be29000d0b (diff) |
New admin setting: open/close registrations, with custom message, from the admin UI
Diffstat (limited to 'app/views/admin/settings')
-rw-r--r-- | app/views/admin/settings/index.html.haml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/app/views/admin/settings/index.html.haml b/app/views/admin/settings/index.html.haml index 1429dbd9e..02faac8c2 100644 --- a/app/views/admin/settings/index.html.haml +++ b/app/views/admin/settings/index.html.haml @@ -38,3 +38,15 @@ %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']) |