about summary refs log tree commit diff
path: root/app/views/admin/announcements/edit.html.haml
blob: c5c605e939c1b8482b5443c5f228850dd5a09975 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
- content_for :page_title do
  = t('.title')

= simple_form_for @announcement, url: admin_announcement_path(@announcement) do |f|
  = render 'shared/error_messages', object: @announcement

  .fields-group
    = f.input :starts_at, include_blank: true, wrapper: :with_block_label
    = f.input :ends_at, include_blank: true, wrapper: :with_block_label

  .fields-group
    = f.input :all_day, as: :boolean, wrapper: :with_label

  .fields-group
    = f.input :text, wrapper: :with_block_label

  - if @announcement.scheduled_at.present? && !@announcement.published?
    .fields-group
      = f.input :scheduled_at, include_blank: true, wrapper: :with_block_label

  .actions
    = f.button :button, t('generic.save_changes'), type: :submit