django模板widthratio结果以逗号分隔

时间:2012-09-11 10:49:41

标签: django django-templates

{%widthratio A 1 B%}将A * B作为数字,我需要以逗号分隔结果。例如。 -

{% widthratio 100 1 100 %}

给10000,我需要10000。知道如何做到这一点吗?

2 个答案:

答案 0 :(得分:2)

这就是你要找的东西

{% load humanize %}

{{ my_num|intcomma }}

确保您在INSTALLED_APPS

中安装了django.contrib.humanize

答案 1 :(得分:0)

您可以使用 as 将其保存为如下所述的变量,

- Status: The certificate is NOT trusted. The name in the certificate does not match the expected.

访问 django 文档以获取参考 built-in template tags