summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/deals/templates/deals/deal_detail.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/deals/templates/deals/deal_detail.html b/app/deals/templates/deals/deal_detail.html
index 8ddb6d8..0d68d8a 100644
--- a/app/deals/templates/deals/deal_detail.html
+++ b/app/deals/templates/deals/deal_detail.html
@@ -1,3 +1,5 @@
-<h4><a href="{{object.url}}">{{object.title|capfirst}} for ${{object.get_deal_price_pretty}} (${{object.dollars_off}} off)</a></h4>
+{% load humanize %}
+
+<h4><a href="{{object.url}}">{{object.title|title}} for ${{object.get_deal_price_pretty|intcomma}} (${{object.dollars_off}} off)</a></h4>