django-simple-sso
django-simple-sso copied to clipboard
'simple-sso-login' not found. 'simple-sso-login' is not a valid view function or pattern name
TBD
@macolo on your server you'll want to add:
from django.contrib.auth import views as auth_views
path('login/', auth_views.LoginView.as_view(), name='login'),
to urls.py
and you'll also need to configure your templates and add a login view.