philomena/lib/philomena_web/templates/admin/site_notice/index.html.slime
2019-12-14 15:15:35 -05:00

44 lines
1.2 KiB
Text

h1 Site Notices
- route = fn p -> Routes.admin_site_notice_path(@conn, :index, p) end
- pagination = render PhilomenaWeb.PaginationView, "_pagination.html", page: @admin_site_notices, route: route, conn: @conn
.block
.block__header
a href=Routes.admin_site_notice_path(@conn, :new)
i.fa.fa-plus>
' New site notice
= pagination
.block__content
table.table
thead
tr
th Title
th Start
th Finish
th Live?
th Options
tbody
= for site_notice <- @admin_site_notices do
tr
td
em = site_notice.title
td class=time_column_class(site_notice.start_date)
= pretty_time site_notice.start_date
td class=time_column_class(site_notice.finish_date)
= pretty_time site_notice.finish_date
td
= live_text site_notice
td
=> link "Edit", to: Routes.admin_site_notice_path(@conn, :edit, site_notice)
' &bull;
=> link "Destroy", to: Routes.admin_site_notice_path(@conn, :delete, site_notice), data: [confirm: "Are you really, really sure?", method: "delete"]
.block__header.block__header--light
= pagination