philomena/lib/philomena_web/templates/gallery/subscription/_subscription.html.slime

24 lines
795 B
Text
Raw Normal View History

2019-12-05 05:12:49 +01:00
elixir:
watch_path = Routes.gallery_subscription_path(@conn, :create, @gallery)
watch_class = if @watching, do: "hidden", else: ""
unwatch_path = Routes.gallery_subscription_path(@conn, :delete, @gallery)
unwatch_class = if @watching, do: "", else: "hidden"
= if @conn.assigns.current_user do
2024-03-03 06:31:06 +01:00
span.js-subscription-target
2019-12-05 05:12:49 +01:00
a.js-subscription-link href=watch_path class=watch_class data-remote="true" data-method="post"
i.fa.fa-bell>
2023-11-23 17:07:49 +01:00
span.hidden--mobile
2019-12-05 05:12:49 +01:00
' Subscribe
a.js-subscription-link href=unwatch_path class=unwatch_class data-remote="true" data-method="delete"
i.fa.fa-bell-slash>
2023-11-23 17:07:49 +01:00
span.hidden--mobile
2019-12-05 05:12:49 +01:00
' Unsubscribe
- else
a href=Routes.session_path(@conn, :new)
2019-12-05 05:12:49 +01:00
i.fa.fa-bell>
2023-11-23 17:07:49 +01:00
span.hidden--mobile
' Subscribe