philomena/lib/philomena_web/templates/notification/_forum.html.slime

25 lines
924 B
Text
Raw Normal View History

2019-11-16 04:50:58 +01:00
- forum = @notification.actor
- topic = @notification.actor_child
.flex.flex--centered.flex__grow
div
=> render PhilomenaWeb.UserAttributionView, "_anon_user.html", object: topic, conn: @conn
=> @notification.action
2019-11-16 04:50:58 +01:00
' titled
2019-11-16 04:50:58 +01:00
strong>
= link topic.title, to: Routes.forum_topic_path(@conn, :show, forum, topic)
2019-11-16 04:50:58 +01:00
' in
2019-11-16 04:50:58 +01:00
=> link forum.name, to: Routes.forum_path(@conn, :show, forum)
=> pretty_time @notification.updated_at
.flex.flex--centered.flex--no-wrap
a.button.button--separate-right title="Delete" href=Routes.forum_read_path(@conn, :create, forum) data-method="post" data-remote="true" data-fetchcomplete-hide="#notification-#{@notification.id}"
i.fa.fa-trash
a.button title="Unsubscribe" href=Routes.forum_subscription_path(@conn, :delete, forum) data-method="delete" data-remote="true" data-fetchcomplete-hide="#notification-#{@notification.id}"
i.fa.fa-bell-slash