lemoncurry/lemonauth/views.py

8 lines
214 B
Python
Raw Normal View History

from django.contrib.auth import views as auth_views
login = auth_views.LoginView.as_view(
template_name='lemonauth/login.html',
redirect_authenticated_user=True,
)
logout = auth_views.LogoutView.as_view()