Retrospring/app/views/announcement/edit.html.haml

24 lines
808 B
Plaintext
Raw Normal View History

- provide(:title, generate_title(t(".title")))
.container-lg.container--main
2020-05-10 05:29:10 -07:00
.card
.card-body
2022-01-24 13:00:31 -08:00
= bootstrap_form_for(@announcement, url: { action: "update" }, method: "PATCH") do |f|
2020-05-10 05:29:10 -07:00
.row
.col-md-12
= f.text_area :content
2020-05-10 05:29:10 -07:00
.row
.col-md-6
= f.url_field :link_href
2020-05-10 05:29:10 -07:00
.col-md-6
= f.text_field :link_text
2020-05-10 05:29:10 -07:00
.row
.col-md-6
= f.datetime_field :starts_at,
2022-01-24 13:00:31 -08:00
data: { target: "#announcement_starts_at", "date-format": "YYYY-MM-DD hh:mm A" }
2020-05-10 05:29:10 -07:00
.col-md-6
= f.datetime_field :ends_at,
2022-01-24 13:00:31 -08:00
data: { target: "#announcement_ends_at", "date-format": "YYYY-MM-DD hh:mm A" }
2020-05-10 05:29:10 -07:00
.row
.col-md-12.text-right
2022-01-24 13:00:31 -08:00
= f.submit class: "btn btn-primary"