Login and index view work.
Fix the docstrings. Rename the pre_login_test view to just login. Functionality is still the same.
This commit is contained in:
parent
63de6467f6
commit
b25eb12d7e
2 changed files with 6 additions and 3 deletions
1
urls.py
1
urls.py
|
@ -11,6 +11,7 @@ admin.autodiscover()
|
|||
urlpatterns = patterns('',
|
||||
url(r'^%s(?P<path>.*)$' % re.escape(settings.STATIC_URL.lstrip('/')), 'django.contrib.staticfiles.views.serve', {'insecure': True}),
|
||||
url(r'^admin/', include(admin.site.urls)),
|
||||
url(r'^login/', views.login, name='login'),
|
||||
url(r'^$', views.index, name='index'),
|
||||
url(r'', include('social_auth.urls')),
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue