def wrongwerbs(request):
global ru, en, shit, errors, right, userWord
if request.method == "POST":
userWord = request.POST['word'].lower().strip()
ru.pop(0)
if userWord == en.pop(0):
right += 1
print("It's right")
else:
errors += 1
print("It's not correct")
if errors + right == 5:
# Здесь мне нужно получить файл "the_end.html", но не получается
return redirect('/werbs/templates/werbs/the_end.html')