The error:
line 136, in render_template
ctx.app.update_template_context(context)
AttributeError: 'NoneType' object has no attribute 'app'
The app.route:
@app.route('/congratulations')
def congratulations():
return render_template('congratulations.html')
To redirect to this template I used:
redirect('/congratulations')
and
congratulations()
(None of them are working)