AttributeError:

4 views
Skip to first unread message

Hambali Idrees Ibrahim

unread,
Jul 7, 2018, 7:09:07 PM7/7/18
to Django users
 

from django.conf.urls import url
from . import views
from django.contrib.auth import login, logout



urlpatterns = [
    url(r'^$', views.home),
    url(r'^login/$', login, {'template_name': 'accounts/login.html'}),
    url(r'^logout/$', logout, {'template_name': 'accounts/logout.html'}),
    url(r'^register/$', views.register, name='register')
]








File "C:\Users\Hambadrees\django\toturial\accounts\urls.py", line 11, in <module>
    url(r'^register/$', views.register, name='register')
AttributeError: module 'accounts.views' has no attribute 'register'
Reply all
Reply to author
Forward
0 new messages