Private
Public Access
1
0

Merge branch 'develop' of bitbucket.org:sanderroosendaal/rowsandall into develop

This commit is contained in:
Sander Roosendaal
2019-08-01 20:31:37 +02:00
2 changed files with 3 additions and 4 deletions

View File

@@ -150,7 +150,6 @@ def strokedatajson(request,id):
'peakforceangle':peakforceangle,
})
# Following part should be replaced with dataprep.new_workout_from_df
r = getrower(request.user)

View File

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