philomena/lib/philomena_web/templates/profile/user_link/index.html.slime

24 lines
747 B
Text
Raw Normal View History

h1 Artist Links
2019-12-04 15:04:25 +01:00
p
2019-12-10 02:21:49 +01:00
a.button href=Routes.profile_user_link_path(@conn, :new, @user)
2019-12-04 15:04:25 +01:00
' Create a link
p
' Artist links associate your account on Derpibooru with tags about content you create and with accounts on sites elsewhere. This allows users to easily identify artists and admins to act more rapidly on takedown requests.
2019-12-04 15:04:25 +01:00
table.table
thead
tr
th URI
th Options
th Verification Code
th Verified?
th Public
tbody
= for link <- @user_links do
tr
td = link link.uri, to: link.uri
2019-12-10 02:21:49 +01:00
td = link "View Details", to: Routes.profile_user_link_path(@conn, :show, @user, link)
2019-12-04 15:04:25 +01:00
td = link.verification_code
th = verified_as_string(link)
th = public_as_string(link)