Private
Public Access
1
0

passing a few more tests

This commit is contained in:
Sander Roosendaal
2020-02-06 17:23:18 +01:00
parent 4fb22ebc7d
commit 2d97e610f6
10 changed files with 66 additions and 59 deletions

View File

@@ -442,7 +442,7 @@ def team_requestmembership_view(request,teamid,userid):
messages.error(request,
"You have to be on a paid plan (Pro or higher) to join this team. As a basic user you can only join teams managed by users on the Coach plan.")
url = reverse('paidplans')
url = reverse('paidplans_view')
return HttpResponseRedirect(url)
res,text = teams.create_request(t,userid)
@@ -669,7 +669,7 @@ def team_create_view(request):
if not res:
messages.error(request,message)
url = reverse('paidplans')
url = reverse('paidplans_view')
return HttpResponseRedirect(url)
url = reverse('rower_teams_view')