Fixed #120 -- Explicitly sotre tax values

This commit is contained in:
Raphael Michel
2016-02-11 17:39:20 +01:00
parent 0741c00133
commit febf352159
4 changed files with 64 additions and 5 deletions

View File

@@ -123,9 +123,9 @@
</div>
<div class="col-md-3 col-xs-6 price">
<strong>{{ event.currency }} {{ line.total|floatformat:2 }}</strong>
{% if line.item.tax_rate %}
{% if line.tax_rate %}
<br/>
<small>{% blocktrans trimmed with rate=line.item.tax_rate %}
<small>{% blocktrans trimmed with rate=line.tax_rate %}
incl. {{ rate }}% taxes
{% endblocktrans %}</small>
{% endif %}