我的表单中有两个按钮。这是我的表格代码:
<form id="benchmarkUpdate" enctype="" method="POST" action="createCompanyReportQuestionnaire" >
{% csrf_token %}
<button type="submit" id="btn-YES" class="btn btn-info text-left" name="benchmarkYes" value="YES"><strong>YES</strong></button>
<button type="submit" id="btn-NO" class="btn btn-info float-right" name="benchmarkNo" value="NO"><strong>NO</strong></button>
</form>
我想知道使用哪个按钮在 views.py 文件中提交表单?或如何在 views.py 文件中获取按钮的值?