我有这个变量:
{{ object.article.rating.get_percent|floatformat }}
Run Code Online (Sandbox Code Playgroud)
输出这个:
540787
Run Code Online (Sandbox Code Playgroud)
有没有办法格式化它,因此它显示为:
540,787
Run Code Online (Sandbox Code Playgroud)
rol*_*one 12
这应该可以帮到你:http: //twigstechtips.blogspot.com/2010/02/django-formatting-numbers-with-commas.html
详细信息:将"django.contrib.humanize"添加到您的INSTALLED_APPS设置中.
然后在模板中:
{% load humanize %}
{{ price|intcomma }}
Run Code Online (Sandbox Code Playgroud)