diff --git a/frontend/templates/book_panel.html b/frontend/templates/book_panel.html index 2a397d65..ac4b5df0 100644 --- a/frontend/templates/book_panel.html +++ b/frontend/templates/book_panel.html @@ -22,13 +22,13 @@ {% else %}{% if status == 'SUCCESSFUL' %} UNGLUED!
On: {{ deadline|date:"M d, Y" }}
-Raised: {{ work.last_campaign.current_total|intcomma }}
+Raised: {{ work.last_campaign.current_total|floatformat:0|intcomma }}
{% if first_ebook %} {% else %} {% endif %} {% else %}{% if status == 'ACTIVE' %} UNGLUE IT! -${{ work.last_campaign.current_total|intcomma }} raised
${{ work.last_campaign.target|intcomma }} needed
+${{ work.last_campaign.current_total|floatformat:0|intcomma }} raised
${{ work.last_campaign.target|floatformat:0|intcomma }} needed
by {{ deadline|date:"M d, Y" }}
@@ -151,7 +151,7 @@Work: {{campaign.work}}
-Target: {{campaign.target|intcomma}}
+Target: {{campaign.target|floatformat:0|intcomma}}
Deadline: {{campaign.deadline}}
Status: {{campaign.status}}
ISBN: {{campaign.work.first_isbn_13}}
@@ -33,7 +33,7 @@Embed a widget:
PayPal receiver: {{campaign.paypal_receiver}}
-Current total (pledged/authorized): {{campaign.current_total|intcomma}}
+Current total (pledged/authorized): {{campaign.current_total|floatformat:0|intcomma}}