From 492ba744fc938c6083ef66e8326d9cbc08ccdc9a Mon Sep 17 00:00:00 2001 From: Danielle McLean Date: Wed, 25 Oct 2017 00:55:38 +1100 Subject: [PATCH] Adjust breadcrumb label for lemonauth:login to match other labels --- lemonauth/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lemonauth/views.py b/lemonauth/views.py index fd03dac..a023a78 100644 --- a/lemonauth/views.py +++ b/lemonauth/views.py @@ -1,7 +1,7 @@ from django.contrib.auth import views as auth_views from lemoncurry import breadcrumbs -breadcrumbs.add(route='lemonauth:login', label='login', parent='home:index') +breadcrumbs.add(route='lemonauth:login', label='log in', parent='home:index') login = auth_views.LoginView.as_view( template_name='lemonauth/login.html',