I am using stripe to process payments with a django web application.
The prices in the database are stored in decimal format, e.g. 100.00
Stripe takes this as $1, and ignores everything to the right of the decimal point.
I need to remove the decimal point when passing this number to Stripe.
Can I do this within the django template?