2020-01-23 21:00:13 +00:00
|
|
|
- content_for :page_title do
|
|
|
|
= t('.title')
|
|
|
|
|
2022-11-13 19:58:54 +00:00
|
|
|
= simple_form_for @announcement, url: admin_announcement_path(@announcement), html: { novalidate: false } do |f|
|
2020-01-23 21:00:13 +00:00
|
|
|
= render 'shared/error_messages', object: @announcement
|
|
|
|
|
|
|
|
.fields-group
|
2022-10-28 10:56:32 +00:00
|
|
|
= f.input :starts_at, include_blank: true, wrapper: :with_block_label, html5: true, input_html: { pattern: '[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}(:[0-9]{2}){1,2}', placeholder: Time.now.strftime('%FT%R') }
|
|
|
|
= f.input :ends_at, include_blank: true, wrapper: :with_block_label, html5: true, input_html: { pattern: '[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}(:[0-9]{2}){1,2}', placeholder: Time.now.strftime('%FT%R') }
|
2020-01-23 21:00:13 +00:00
|
|
|
|
|
|
|
.fields-group
|
|
|
|
= f.input :all_day, as: :boolean, wrapper: :with_label
|
|
|
|
|
|
|
|
.fields-group
|
|
|
|
= f.input :text, wrapper: :with_block_label
|
|
|
|
|
2020-01-27 10:05:33 +00:00
|
|
|
- unless @announcement.published?
|
2020-01-23 21:00:13 +00:00
|
|
|
.fields-group
|
2023-01-18 15:23:39 +00:00
|
|
|
= f.input :scheduled_at, include_blank: true, wrapper: :with_block_label, html5: true, input_html: { pattern: '[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}(:[0-9]{2}){1,2}', placeholder: Time.now.strftime('%FT%R') }
|
2020-01-23 21:00:13 +00:00
|
|
|
|
|
|
|
.actions
|
|
|
|
= f.button :button, t('generic.save_changes'), type: :submit
|