philomena/lib/philomena_web/templates/notification/_channel.html.heex

18 lines
810 B
Text
Raw Normal View History

2024-05-04 23:09:20 +02:00
<div class="flex flex--centered flex__grow">
<div>
<strong>
<%= link(@notification.actor.title, to: ~p"/channels/#{@notification.actor}") %>
</strong>
<%= @notification.action %>
<%= pretty_time(@notification.updated_at) %>
</div>
</div>
<div class="flex flex--centered flex--no-wrap">
<a class="button button--separate-right" data-fetchcomplete-hide={"#notification-#{@notification.id}"} data-method="post" data-remote="true" href={~p"/channels/#{@notification.actor}/read"} title="Delete">
<i class="fa fa-trash"></i>
</a>
<a class="button" data-fetchcomplete-hide={"#notification-#{@notification.id}"} data-method="delete" data-remote="true" href={~p"/channels/#{@notification.actor}/subscription"} title="Unsubscribe">
<i class="fa fa-bell-slash"></i>
</a>
</div>