Я пытаюсь вернуть цвет заливки на основе условия, но при этом цвет отправляется всем тегам. Пожалуйста, скажите мне, как использовать «Это». или функция "Self" в Flask.
@app.route('/body/<part>')
def show_blog(part):
claim = int(Assembled_ClaimsDF.loc[part])
if claim>10000:
return redirect(url_for('colour_red'))
else:
return redirect(url_for('colour_green'))
@app.route('/colour_red')
def colour_red():
return render_template('new.html', colour = 'red')
@app.route('/colour_green')
def colour_green():
return render_template('new.html', colour = 'yellow')
@app.route('/')
def index():
return render_template('new.html')
if __name__ == '__main__':
app.run()