philomena/lib/philomena_web/templates/source_change/index.html.slime

37 lines
956 B
Text
Raw Normal View History

2019-12-04 23:56:13 +01:00
.block
.block__header
= @pagination
.block__content
table.table
thead
tr
th colspan=2 Image
th New Source
th Timestamp
th User
th Initial?
tbody
= for source_change <- @source_changes do
tr
td.center
= link source_change.image_id, to: Routes.image_path(@conn, :show, source_change.image)
td.center
= render PhilomenaWeb.ImageView, "_image_container.html", image: source_change.image, size: :thumb_tiny, conn: @conn
td
= source_change.new_value
td
= pretty_time(source_change.created_at)
td
= render PhilomenaWeb.UserAttributionView, "_anon_user.html", object: source_change, conn: @conn
td
= if source_change.initial do
' &#x2713;
.block__header
= @pagination