mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 12:37:58 +01:00
12 lines
695 B
Text
12 lines
695 B
Text
- route = fn p -> Routes.notification_path(@conn, :index, p) end
|
|
|
|
h1 Notification Area
|
|
.walloftext
|
|
.block__header
|
|
= render PhilomenaWeb.PaginationView, "_pagination.html", page: @notifications, route: route, conn: @conn
|
|
|
|
= for notification <- @notifications do
|
|
= render PhilomenaWeb.NotificationView, "_notification.html", notification: notification, conn: @conn
|
|
|
|
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.
|
|
p By default you'll be subscribed to any images or topics you reply to. You can configure this in your user settings page.
|