Skip to content

Commit

Permalink
Remove currency filter on fields that arn't currency
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Crawley committed Nov 18, 2013
1 parent 0e15a14 commit b0f1387
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions oscar/templates/oscar/dashboard/offers/offer_detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ <h1>{{ offer.name }}</h1>
{% endif %}
</td>
<td>{% trans "Total cost:" %} <strong>{{ offer.total_discount|currency }}</strong></td>
<td>{% trans "Number of orders:" %} <strong>{{ offer.num_orders|currency }}</strong></td>
<td>{% trans "Number of uses:" %} <strong>{{ offer.num_applications|currency }}</strong></td>
<td>{% trans "Number of orders:" %} <strong>{{ offer.num_orders }}</strong></td>
<td>{% trans "Number of uses:" %} <strong>{{ offer.num_applications }}</strong></td>
</tr>
</table>

Expand Down

0 comments on commit b0f1387

Please sign in to comment.