Retrospring/app/views/admin/announcement/index.html.haml

22 lines
696 B
Plaintext
Raw Normal View History

2022-11-20 08:59:24 -08:00
- @announcements.each do |announcement|
.card
.card-body
.d-flex.w-100.justify-content-between
%p.mb-3= announcement.content
%small.text-muted= announcement.starts_at
.d-flex.w-100
= link_to t("voc.edit"), announcement_edit_path(id: announcement.id), class: "btn btn-link text-primary"
= button_to t("voc.delete"),
announcement_destroy_path(id: announcement.id),
method: :delete,
class: "btn btn-link text-danger",
confirm: t(".confirm_delete")
2020-05-10 05:29:10 -07:00
2022-11-20 08:59:24 -08:00
.row
.col-md-12
= link_to t(".new"), :announcement_new, class: "btn btn-primary"
2020-05-10 05:29:10 -07:00
2022-11-20 08:59:24 -08:00
- provide(:title, generate_title(t(".title")))
- parent_layout "admin"