@@ -18,7 +61,15 @@
Hirer
{{ object.person.name }}
{{ object.organisation.name|default_if_none:"" }}
-
+ {% if invoice %}
+
+ {% if object.organisation.address %}
+ {{ object.organisation.address|default_if_none:""|linebreaksbr }}
+ {% elif object.person.address %}
+ {{ object.person.address|default_if_none:""|linebreaksbr }}
+ {% endif %}
+
+ {% endif %}
{% if object.person.phone %}
{{ object.person.phone }}
@@ -27,19 +78,29 @@
{% endif %}
- {% if object.person.email %}
- {{ object.person.email }}
- {% elif object.organisation.email %}
- {{ object.organisation.email }}
+ {% if invoice %}
+ {% if object.organisation.email %}
+ {{ object.organisation.email }}
+ {% elif object.person.email %}
+ {{ object.person.email }}
+ {% endif %}
+ {% else %}
+ {% if object.person.email %}
+ {{ object.person.email }}
+ {% elif object.organisation.email %}
+ {{ object.organisation.email }}
+ {% endif %}
{% endif %}
Venue
{{ object.venue.name }}
+ {% if not invoice %}
- {{ object.venue.address|default_if_none:""|linebreaks }}
+ {{ object.venue.address|default_if_none:""|linebreaksbr }}
+ {% endif %}
|
@@ -61,7 +122,7 @@
|
- {% if object.access_at %}
+ {% if object.access_at and not invoice%}
Access |
@@ -113,7 +174,7 @@
{% if item.description %}
- {{ item.description|linebreaks }}
+ {{ item.description|linebreaksbr }}
{% endif %}
@@ -133,15 +194,21 @@
| £ {{ object.sum_total|floatformat:2 }} |
|
- | VAT Registration Number: 116252989 |
+ {% if not invoice %}VAT Registration Number: 116252989{% endif %} |
VAT @ {{ object.vat_rate.as_percent|floatformat:2 }}% |
£ {{ object.vat|floatformat:2 }} |
|
+
- The full hire fee is payable at least 10 days before the event.
+ {% if invoice %}
+ VAT Registration Number: 116252989
+ {% else %}
+ The full hire fee is payable at least 10 days before the event.
+ {% endif %}
+
|
@@ -156,88 +223,90 @@
|
-