From f2c8036bc0a9ea6b5facc59e0835faf0f3603d3f Mon Sep 17 00:00:00 2001 From: Jason McBrayer Date: Fri, 8 Jun 2018 19:02:46 -0400 Subject: [PATCH] Fix tag timeline titles --- brutaldon/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/brutaldon/views.py b/brutaldon/views.py index a07b6e7..5f641e0 100644 --- a/brutaldon/views.py +++ b/brutaldon/views.py @@ -108,7 +108,7 @@ def tag(request, tag): return redirect(login) data = mastodon.timeline_hashtag(tag) return render(request, 'main/timeline.html', - {'toots': data, 'timeline': '#'+tag, + {'toots': data, 'timeline_name': '#'+tag, 'own_username': request.session['user'].acct, 'fullbrutalism': fullbrutalism_p(request)})