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

18 lines
658 B
Text
Raw Normal View History

- route = fn p -> ~p"/notifications?#{p}" end
2019-11-16 04:50:58 +01:00
h1 Notification Area
.walloftext
.block__header
2019-11-16 05:38:42 +01:00
= render PhilomenaWeb.PaginationView, "_pagination.html", page: @notifications, route: route, conn: @conn
2019-11-16 04:50:58 +01:00
= cond do
- Enum.any?(@notifications) ->
= for notification <- @notifications do
= render PhilomenaWeb.NotificationView, "_notification.html", notification: notification, conn: @conn
2019-11-16 04:50:58 +01:00
- true ->
p
' To get notifications on new comments and forum posts, click the
' 'Subscribe' button in the bar at the top of an image or forum topic.
' You'll get notifications here for any new posts or comments.