Django 템플릿의 가감 곱하기 나누기 기본 구문
1463 단어 소결
{{ value|add:10}} value=5, 15
Django 모델 빼기:
{{value|add:-10}} value=5, -5, ,
Django 모듈 곱셈:
{% widthratio 5 1 100 %} :5/1 *100, 500,widthratio , 1/ 2* 3, , 2=1
Django는 나눗셈을 하는데, 여기에widthratio라는 방법을 사용합니다.
{% widthratio foo.product_amount 100 1 %}#}
widthratio ,
{% widthratio this_value max_value max_width as width %}
{% blocktrans %}The width is: {{ width }}{% endblocktrans %}
{{ foo.product_amount |floatformat:5 }}
register = template.Library()
add filter , :
A^2: {% widthratio A 1 A %}
(A+B)^2: {% widthratio A|add:B 1 A|add:B %}
(A+B) * (C+D): {% widthratio A|add:B 1 C|add:D %}
templatehelper.py
@register.filter
def div(value, div):
'''
,
:param value:
:param div:
:return:
'''
return round((value / div), 2)
, {% load templatehelper %}:
{{ foo.product_amount |div:100 }}
어리석은 방법을 시도해 보았지만 효력이 발생하지 않았고 효력이 발생하더라도 소수점 뒤에 있는 값을 무시하는 경우가 발생하기 때문에 권장하지 않습니다.
{% widthratio foo.product_amount 100 1 as width %}{% blocktrans %}{{ width }}{% endblocktrans %}#}