Show prices to two decimal places

This commit is contained in:
PCoder 2020-02-02 10:57:14 +05:30
parent fc8c4579fb
commit c0683d9f53
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ def get_line_item_from_stripe_invoice(invoice):
period = mark_safe("%s — %s" % (
datetime.datetime.fromtimestamp(start_date).strftime('%Y-%m-%d'),
datetime.datetime.fromtimestamp(end_date).strftime('%Y-%m-%d'))),
total=invoice.total/100,
total='%.2f' % (invoice.total/100),
stripe_invoice_url=invoice.hosted_invoice_url,
see_invoice_text=_("See Invoice")
))