-1
我想比較模板中的兩個字符串,但總是在else中顯示結果。在此我將代碼添加到trans_his.trans_type = Debit但它總是顯示信用。如何比較django中模板上的兩個字符串?
{% if trans_his.trans_type == "Debit" %}
<td>debit {{data.amount}}</td>
{% else %}
<td>credit {{data.amount}}</td>
{% endif %}
你確定案件是一樣的嗎?你可以做'{{trans_his.trans_type}} {{data.amount}}'並且避免比較所有的一起。 – Anonymous
對不起,這是我愚蠢的錯誤..我得到它,並感謝您的答覆 – kkk