Formats float values with specified number of significant digits (defaults to 3).
Usage:
{{value|sigdig}} # with 3 significant digits by default
{{value|sigdig:digits}}
Examples:
{{0.001432143|sigdig}}
renders as 0.00143
{{874321.4327184|sigdig}}
renders as 874000
{{874321.4327184|sigdig:5}}
renders as 874320
Useful for scientific or engineering presentation.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | from django import template
import math
register = template.Library()
def sigdig(value, digits = 3):
order = int(math.floor(math.log10(math.fabs(value))))
places = digits - order - 1
if places > 0:
fmtstr = "%%.%df" % (places)
else:
fmtstr = "%.0f"
return fmtstr % (round(value, places))
register.filter('sigdig', sigdig)
|
More like this
- Template tag - list punctuation for a list of items by shapiromatron 10 months, 2 weeks ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months, 3 weeks ago
- Serializer factory with Django Rest Framework by julio 1 year, 5 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 6 months ago
- Help text hyperlinks by sa2812 1 year, 7 months ago
Comments
Thanks! Works perfectly. Note - if your input is a string, cast it to float.
#
Please login first before commenting.