From f64f4f92cf9730cac11aaf826c460118fce17465 Mon Sep 17 00:00:00 2001 From: Jason McBrayer Date: Sun, 24 Jun 2018 14:33:44 -0400 Subject: [PATCH] Pass correct variables to notifications template --- brutaldon/views.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/brutaldon/views.py b/brutaldon/views.py index 2d19775..52dc545 100644 --- a/brutaldon/views.py +++ b/brutaldon/views.py @@ -264,7 +264,8 @@ def note(request, next=None, prev=None): {'notes': notes,'timeline': 'Notifications', 'timeline_name': 'Notifications', 'own_username': request.session['user'].acct, - 'fullbrutalism': fullbrutalism_p(request)}) + 'fullbrutalism': fullbrutalism_p(request), + 'prev': prev, 'next': next}) def thread(request, id): mastodon = get_mastodon(request)