[Django]-Django redirect inside a function

3👍

def board(request, board_id, board_name):
    bad = RedirectIfWrong(request, board_id, board_name)
    if bad:
      return bad
    ...
    return render(request, 'forums/board.html', {'board': board})
👤gipsy

1👍

Add the return

def board(request, board_id, board_name):
    return RedirectIfWrong(request, board_id, board_name)
    # ^^^^

Leave a comment