philomena/lib/philomena_web/templates/image/favorites/index.html.slime

7 lines
263 B
Text
Raw Normal View History

h5
' Faved by
=> @image.faves_count
= pluralize("user", "users", @image.faves_count)
2019-12-04 05:14:56 +01:00
= for fave <- Enum.sort_by(@image.faves, & &1.user.name) do
=> link fave.user.name, to: Routes.profile_path(@conn, :show, fave.user), class: "interaction-user-list-item"