Add note about contracts not being invoices.

This commit is contained in:
Tom Price
2015-05-28 23:33:05 +01:00
parent 390a15c56e
commit 7fd1bc6e7c

View File

@@ -189,12 +189,18 @@
<keepTogether> <keepTogether>
<blockTable style="totalTable" colWidths="300,115,80"> <blockTable style="totalTable" colWidths="300,115,80">
<tr> <tr>
<td></td> <td>{% if not invoice %}VAT Registration Number: 116252989{% endif %}</td>
<td>Total (ex. VAT)</td> <td>Total (ex. VAT)</td>
<td>£ {{ object.sum_total|floatformat:2 }}</td> <td>£ {{ object.sum_total|floatformat:2 }}</td>
</tr> </tr>
<tr> <tr>
<td>{% if not invoice %}VAT Registration Number: 116252989{% endif %}</td> <td>
{% if not invoice %}
<para>
<b>The full hire fee is payable at least 10 days before the event.</b>
</para>
{% endif %}
</td>
<td>VAT @ {{ object.vat_rate.as_percent|floatformat:2 }}%</td> <td>VAT @ {{ object.vat_rate.as_percent|floatformat:2 }}%</td>
<td>£ {{ object.vat|floatformat:2 }}</td> <td>£ {{ object.vat|floatformat:2 }}</td>
</tr> </tr>
@@ -205,7 +211,7 @@
{% if invoice %} {% if invoice %}
VAT Registration Number: 116252989 VAT Registration Number: 116252989
{% else %} {% else %}
<b>The full hire fee is payable at least 10 days before the event.</b> <b>This contract is not an invoice.</b>
{% endif %} {% endif %}
</para> </para>