标签: python django django-templates
我在模板中使用total_prices
{{ data.total_prices }} # there shows 300
但我怎么能给它两个漂浮数?
我的意思是它在模板中看起来像300.00。
300.00
怎么办?
答案 0 :(得分:4)
使用floatformat模板过滤器
{{ data.total_prices|floatformat:-2 }} # now it shows 300.00