如何禁用充当链接django的按钮

1 html python django button hyperlink

单击“批准”按钮时禁用“拒绝”按钮的最佳方法是什么?我有 {{some}} 存储批准或拒绝值的值。

<a href="{% url 'hrfinance:edit' id=item.id status='a' %}"><button>Approve</button></a> 
<a href="{% url 'hrfinance:edit' id=item.id status='d' %}"><button>Deny</button></a> 
Run Code Online (Sandbox Code Playgroud)

html文件

{% if some %}
    <table  id="example" class="display" cellspacing="0" width="100%" border="1.5px">
     <tr align="center">
     <th> Student ID </th>
     <th> Student Name </th>
     <th> Start Date </th>
     <th> End Date </th>
     <th> Action </th>
     <th> Status </th>
     </tr>
     {% for item in query_results %}
         <tr align="center">
             <td> {{item.studentID}} </td>
             <td> {{item.studentName}} </td>
             <td> {{item.startDate|date:'d-m-Y'}} </td>
             <td> {{item.endDate|date:'d-m-Y'}} </td>
             <td><a href="{% url 'hrfinance:edit' id=item.id status='a' %}"><button>Approve</button></a> <a href="{% url 'hrfinance:edit' id=item.id status='d' %}"><button {% if some == 'approve' %} disabled{% endif %}>Deny</button></a></td>
             <td> 
                 {% if item.status %}
                     {{item.status}}
                 {% else %}
                      Pending
                 {% endif %}       
             </td>
       </tr>
       {% endfor %}
       </table>
{% else %}
Run Code Online (Sandbox Code Playgroud)

{{some}} 从这里开始

视图.py

def superltimesheet(request):
    query_results = Timesheet.objects.all()
    data={'query_results':query_results, 'some':'some'}
    return render(request, 'hrfinance/supervisor_list_timesheet.html', data)     
Run Code Online (Sandbox Code Playgroud)

Pau*_*ida 5

使用if标签

<button{% if some == 'deny' %} disabled{% endif %}>Approve</button>
Run Code Online (Sandbox Code Playgroud)