ページに 2 つのボタンを作成しようとしています。それぞれ、サーバー上で異なる Python スクリプトを実行したいと考えています。これまでのところ、使用してボタンを 1 つだけ取得/収集できました。
def contact():
form = ContactForm()
if request.method == 'POST':
return 'Form posted.'
elif request.method == 'GET':
return render_template('contact.html', form=form)
押されたボタンに基づいて何を変更する必要がありますか?