I've the template as follows:
<h2>Coupon<b class="font40">{{ coupon.cash|floatformat:"0" }}</b>.00</h2>
I can get the integer part with 'floatformat'. How can I get the fractional part with Django template? (e.g. the fractional part of '8.5' is '5') Thanks.