mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 04:27:59 +01:00
37 lines
No EOL
956 B
Text
37 lines
No EOL
956 B
Text
.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
|
|
' ✓
|
|
|
|
.block__header
|
|
= @pagination |