fixed missing team when event is not password protected

This commit is contained in:
Danhia 2022-01-02 21:00:02 +01:00
parent 7ae36e2cee
commit 6ec1a20e74
1 changed files with 7 additions and 5 deletions

View File

@ -85,6 +85,8 @@ def event(request, event_slug):
player = None player = None
if player: if player:
IsRegistered = True IsRegistered = True
if not player.team and event_info.team_size > 1:
return render(request, 'events/create_team.html', {'event' : event_info, 'logged': True, 'wrongpwd': False, 'registered' : True, 'notexist' : False})
if event_info.password: if event_info.password:
if request.user.is_authenticated: if request.user.is_authenticated:
if request.user.is_staff is False: if request.user.is_staff is False: