Is there a django template filter to get only digits after the floating point?
For example :
2.34 --> 34 2.00 --> 00 1.10 --> 10 >
2.34 --> 34 2.00 --> 00 1.10 --> 10
It's better to write your own filter, but if you don't wanna do it I can propose you one more not optimal "lazy" solution:
{{ value|stringformat:"f"|slice:"-6:-4" }}