django template zero padding 0埋め

2022-10-26 19:38:12 浏览数 (1)

期待:1→001

stringformat

代码语言:javascript复制
<td class="">{{e.branch_no|stringformat:'03i'}}</td>  →001
<td class="">{{e.branch_no|stringformat:'04i'}}</td>  →0001

1 != '1' 字符和数字相等的判定

payment_method.code : integer

appl.payment_method : string

代码语言:javascript复制
<select id="payment_method">
    {% for op in payment_method %}
    <option value="{{op.code}}"
        {%if op.code|stringformat:"i" == appl.payment_method %}
        selected {% endif %}>{{op.name}}</option>
    {% endfor %}
</select>

0 人点赞