2020-01-23 13:00:13 -08:00
|
|
|
- content_for :page_title do
|
|
|
|
= t('.title')
|
|
|
|
|
2022-11-13 11:58:54 -08:00
|
|
|
= simple_form_for @announcement, url: admin_announcements_path, html: { novalidate: false } do |f|
|
2020-01-23 13:00:13 -08:00
|
|
|
= render 'shared/error_messages', object: @announcement
|
|
|
|
|
|
|
|
.fields-group
|
2023-10-03 06:00:40 -07:00
|
|
|
= f.input :starts_at, include_blank: true, wrapper: :with_block_label, html5: true, input_html: { pattern: datetime_pattern, placeholder: datetime_placeholder }
|
|
|
|
= f.input :ends_at, include_blank: true, wrapper: :with_block_label, html5: true, input_html: { pattern: datetime_pattern, placeholder: datetime_placeholder }
|
2020-01-23 13:00:13 -08:00
|
|
|
|
|
|
|
.fields-group
|
|
|
|
= f.input :all_day, as: :boolean, wrapper: :with_label
|
|
|
|
|
|
|
|
.fields-group
|
|
|
|
= f.input :text, wrapper: :with_block_label
|
|
|
|
|
|
|
|
.fields-group
|
2023-10-03 06:00:40 -07:00
|
|
|
= f.input :scheduled_at, include_blank: true, wrapper: :with_block_label, html5: true, input_html: { pattern: datetime_pattern, placeholder: datetime_placeholder }
|
2020-01-23 13:00:13 -08:00
|
|
|
|
|
|
|
.actions
|
|
|
|
= f.button :button, t('.create'), type: :submit
|