125 lines
2.6 KiB
HTML
125 lines
2.6 KiB
HTML
{% macro br(text) %}
|
|
{% if text %}
|
|
{{ text }}<br>
|
|
{% endif %}
|
|
{% endmacro %}
|
|
<style>
|
|
body {
|
|
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
|
|
}
|
|
|
|
.feca-address {
|
|
font-size: small;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.to-address {
|
|
margin-top: 20mm;
|
|
margin-bottom: 10mm;
|
|
font-size: medium;
|
|
}
|
|
|
|
.invoice-header {
|
|
background-color: {{ theme_colour }};
|
|
color: white;
|
|
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
|
|
font-weight: bold;
|
|
font-size: large;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 2mm;
|
|
}
|
|
.enclosed {
|
|
margin-top: 10mm;
|
|
}
|
|
|
|
.due {
|
|
margin-top: 10mm;
|
|
margin-bottom: 10mm;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.thank-you {
|
|
margin-top: 15mm;
|
|
font-style: italic;
|
|
text-align: center;
|
|
}
|
|
|
|
.contact {
|
|
margin-top: 15mm;
|
|
margin-bottom: 10mm;
|
|
font-size: small;
|
|
text-align: center;
|
|
}
|
|
|
|
.registered-charity {
|
|
font-size: small;
|
|
text-align: center;
|
|
}
|
|
|
|
.bottom-area {
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
</style>
|
|
|
|
<div class="feca-address">
|
|
Fen Edge Community Association {{ pdf_asset('FenEdgeLogoOrange') }}<br>
|
|
Community Office<br>
|
|
Cottenham Village College<br>
|
|
Cottenham<br>
|
|
CB24 8UA</div>
|
|
|
|
<div class="to-address">
|
|
{{ br(contact_name) }}
|
|
<b>{{ br(AdvertiserName) }}</b>
|
|
{{ br(address_1) }}
|
|
{{ br(address_2) }}
|
|
{{ br(town) }}
|
|
{{ br(post_code) }}
|
|
</div>
|
|
|
|
<div class="invoice-header">
|
|
<div>INVOICE: FEN{{ invoice_number }}</div>
|
|
<div>{{ invoice_date }}</div>
|
|
</div>
|
|
|
|
|
|
<p class="enclosed">Please find enclosed a copy of the latest issue of Fen Edge News feature your {{ invoice_size }} advertisement on {{ invoice_page }}.</p>
|
|
|
|
<p class="due">
|
|
An amount of £{{ price }} is now due.</p>
|
|
<p>
|
|
Please pay by:<br><br>
|
|
<u><strong>BACS</strong></u><br>
|
|
<strong>Fen Edge Community Association</strong><br>
|
|
Account No: 40349178<br>
|
|
Sort Code: 20-17-22<br>
|
|
Reference: FEN{{ invoice_number }}<br>
|
|
<br><br>
|
|
<u><strong>Cheque</strong></u><br>
|
|
made payable to Fen Edge Community Assocation and sent to the above address.<br>
|
|
Please write FEN{{ invoice_number }} on the back of your cheque.
|
|
</p>
|
|
|
|
<p class="thank-you">
|
|
Thank you for supporting the Fen Edge Community Association
|
|
</p>
|
|
|
|
<p class="contact">
|
|
Advertising: Bob Turner<br>
|
|
✉ advertising@fenedge.co.uk<br>
|
|
📞 01954 250082
|
|
</p>
|
|
|
|
<div class="bottom-area">
|
|
<hr>
|
|
|
|
<div class="registered-charity">
|
|
Registered Charity No. 293020
|
|
</div></div>
|