Private
Public Access
1
0

fixing annoying bug

This commit is contained in:
Sander Roosendaal
2019-08-01 08:23:55 +02:00
parent 29974524b6
commit 41498737d4
2 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@@ -58,10 +58,10 @@ urlpatterns += [
re_path(r'^getblogs/$',rowersviews.get_blog_posts), re_path(r'^getblogs/$',rowersviews.get_blog_posts),
re_path(r'^login/', re_path(r'^login/',
# auth_views.LoginView, # auth_views.LoginView,
auth_views.LoginView, auth_views.LoginView.as_view(),
name='login'), name='login'),
re_path(r'^logout/$', re_path(r'^logout/$',
auth_views.LogoutView, auth_views.LogoutView.as_view(),
{'next_page': '/'}, {'next_page': '/'},
name='logout',), name='logout',),
re_path(r'^rowers/',include('rowers.urls')), re_path(r'^rowers/',include('rowers.urls')),