2016-09-30 10:46:05 +00:00
|
|
|
{% load registrasion_tags %}
|
2017-09-27 13:46:13 +00:00
|
|
|
{% load lca2018_tags %}
|
2016-09-30 10:46:05 +00:00
|
|
|
|
2023-04-22 00:26:54 +00:00
|
|
|
<h2>Invoice/Statement</h2>
|
2023-04-15 06:47:41 +00:00
|
|
|
<h3>Software Freedom Conservancy</h3>
|
|
|
|
{# <h4>ABN 56 987 117 479</h4> #}
|
2016-09-30 10:46:05 +00:00
|
|
|
|
|
|
|
<p>
|
2021-07-05 10:20:24 +00:00
|
|
|
Enquiries: please e-mail <a href="mailto:{{ settings.CONFERENCE_EMAIL }}">{{ settings.CONFERENCE_EMAIL }}</a>
|
2016-09-30 10:46:05 +00:00
|
|
|
</p>
|
|
|
|
|
2018-09-29 03:50:42 +00:00
|
|
|
<ul class="list-unstyled">
|
2016-09-30 10:46:05 +00:00
|
|
|
<li><strong>Invoice number:</strong> {{ invoice.id }}
|
|
|
|
<li><strong>Invoice status:</strong> {{ invoice.get_status_display }}</li>
|
|
|
|
<li><strong>Issue date:</strong> {{ invoice.issue_time|date:"DATE_FORMAT" }}
|
|
|
|
{% if not invoice.is_void %}
|
|
|
|
<li><strong>Due:</strong> {{ invoice.due_time|date:"DATETIME_FORMAT"}}</li>
|
|
|
|
{% endif %}
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<h4>Attention:</h4>
|
|
|
|
{{ invoice.recipient|linebreaksbr}}
|
|
|
|
</div>
|
|
|
|
|
2023-04-20 09:15:10 +00:00
|
|
|
<p>This invoice has been issued as a result of an application to attend {% conference_name %}.</p>
|
2016-09-30 10:46:05 +00:00
|
|
|
|
2018-10-01 07:44:25 +00:00
|
|
|
<table class="table table-striped my-4">
|
|
|
|
<thead>
|
2016-09-30 10:46:05 +00:00
|
|
|
<tr>
|
2018-10-01 07:44:25 +00:00
|
|
|
<th>Description</th>
|
|
|
|
<th class="text-right">Quantity</th>
|
|
|
|
<th class="text-right">Price/Unit</th>
|
|
|
|
<th class="text-right">Total</th>
|
2016-09-30 10:46:05 +00:00
|
|
|
</tr>
|
2018-10-01 07:44:25 +00:00
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for line_item in invoice.lineitem_set.all %}
|
|
|
|
<tr>
|
|
|
|
<td>{{ line_item.description }}</td>
|
|
|
|
<td class="text-right">{{ line_item.quantity }}</td>
|
|
|
|
<td class="text-right">${{ line_item.price }}</td>
|
|
|
|
<td class="text-right">${{ line_item.total_price }}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
<tr><th colspan="4"></th></tr>
|
2016-09-30 10:46:05 +00:00
|
|
|
|
2023-04-20 04:58:12 +00:00
|
|
|
{% if invoice.value|gst %}
|
|
|
|
<tr>
|
|
|
|
<th colspan="3">Includes 10% Australian Goods and Services Tax</th>
|
|
|
|
<td class="text-right">${{ invoice.value|gst}}</td>
|
|
|
|
</tr>
|
|
|
|
{% endif %}
|
2016-09-30 10:46:05 +00:00
|
|
|
|
2018-10-01 07:44:25 +00:00
|
|
|
<tr>
|
|
|
|
<th colspan="3">Total</th>
|
|
|
|
<td class="text-right">${{ invoice.value }}</td>
|
|
|
|
</tr>
|
2016-09-30 10:46:05 +00:00
|
|
|
|
2018-10-01 07:44:25 +00:00
|
|
|
<tr><th colspan="4"></th></tr>
|
2016-09-30 10:46:05 +00:00
|
|
|
|
|
|
|
<tr>
|
2018-10-01 07:44:25 +00:00
|
|
|
<th colspan="3">Total payments received:</th>
|
|
|
|
<td class="text-right">${{ invoice.total_payments }}</td>
|
2016-09-30 10:46:05 +00:00
|
|
|
</tr>
|
2018-10-01 07:44:25 +00:00
|
|
|
{% if invoice.is_unpaid or invoice.is_paid %}
|
|
|
|
<tr>
|
|
|
|
<th colspan="3">Balance due:</th>
|
|
|
|
<td class="text-right">${{ invoice.balance_due }}</td>
|
|
|
|
</tr>
|
|
|
|
{% endif %}
|
|
|
|
</tbody>
|
2016-09-30 10:46:05 +00:00
|
|
|
</table>
|
|
|
|
|
|
|
|
{% if invoice.paymentbase_set.all %}
|
2018-10-01 07:44:25 +00:00
|
|
|
<div class="page-break"></div>
|
|
|
|
<h3 class="pt-4">Payments received</h3>
|
2016-09-30 10:46:05 +00:00
|
|
|
{% include "registrasion/payment_list.html" with payments=invoice.paymentbase_set.all %}
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
|
|
|
|
<hr />
|
|
|
|
|
2023-04-15 06:47:41 +00:00
|
|
|
<p>{% conference_name %} is a project of Software Freedom Conservancy Inc.</p>
|
2016-09-30 10:46:05 +00:00
|
|
|
|
|
|
|
<p>
|
2023-04-15 06:47:41 +00:00
|
|
|
137 MONTAGUE ST STE 380 <br />
|
|
|
|
Brooklyn, NY 11201-3548 <br />
|
|
|
|
{# ABN 56 987 117 479 <br /> #}
|
2016-09-30 10:46:05 +00:00
|
|
|
<p>
|