From 87f04ce98832218d6471c23b68fab32fe5fa7f59 Mon Sep 17 00:00:00 2001 From: Danielle McLean Date: Mon, 18 Dec 2017 10:53:17 +1100 Subject: [PATCH] Use a more helpful page title on IndieAuth authorisation pages --- lemonauth/views/indie.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lemonauth/views/indie.py b/lemonauth/views/indie.py index d26f8c3..40969c5 100644 --- a/lemonauth/views/indie.py +++ b/lemonauth/views/indie.py @@ -12,7 +12,7 @@ from urllib.parse import urlencode, urljoin, urlunparse, urlparse from .. import tokens -breadcrumbs.add('lemonauth:indie', label='indieauth', parent='home:index') +breadcrumbs.add('lemonauth:indie', parent='home:index') def canonical(url): @@ -84,7 +84,7 @@ class IndieView(TemplateView): 'verified': verified, 'params': params, 'scopes': scopes, - 'title': 'indieauth', + 'title': 'indieauth from {client_id}'.format(**params), } def post(self, request):