Answers for "ttributeerror: module 'django.views' has no attribute 'home'"

2

AttributeError: module 'django.contrib.auth.views' has no attribute 'login'

from django.contrib.auth import views as auth_views

urlpatterns = [
   url( r'^login/$',auth_views.LoginView.as_view(template_name="useraccounts/login.html"), name="login"),
]
Posted by: Guest on May-21-2020

Code answers related to "ttributeerror: module 'django.views' has no attribute 'home'"

Python Answers by Framework

Browse Popular Code Answers by Language