copyleftconf-website/pinaxcon/templates/registrasion/invoice/details.html

61 lines
1.9 KiB
HTML
Raw Normal View History

{% extends "registrasion/invoice/details_.html" %}
2017-10-05 20:07:43 +00:00
{% load nbpy_tags %}
{% comment %}
Blocks that you can override:
- heading
- subheading
- invoice_intro
- extra_line_items
- contact_info
{% endcomment %}
{% block heading %}
{% if invoice.is_paid or invoice.is_refunded %}
Registration Receipt
{% else %}
Pending Registration
{% endif %}
{% endblock %}
{% block subheading %}
North Bay Python. December 2 & 3 2017. Petaluma, California.
{% endblock %}
{% block invoice_intro %}
{% if invoice.is_unpaid %}
This is a registration summary for North Bay Python 2017. It is not confirmed until paid in full.
{% elif invoice.is_void %}
This is a void registration summary for North Bay Python 2017. It is provided for informational purposes only.
{% elif invoice.is_refunded %}
This is a refunded registration summary for North Bay Python 2017. It is provided for informational purposes only.
{% elif invoice.is_paid %}
This is a confirmed registration summary for North Bay Python 2017.
{% endif %}
2017-10-05 20:07:43 +00:00
{% endblock %}
2017-10-05 20:07:43 +00:00
{% block extra_line_items_after_total %}
{% donation_income invoice as donation %}
{% if donation %}
<tr>
<td colspan="3">Includes donation eligible for tax deduction in the USA:</td>
<td class="text-right">${{ donation }}</td>
</tr>
{% endif %}
{% endblock %}
{% block contact_info %}
2017-11-29 23:36:45 +00:00
<p>Direct inquiries to <a href="mailto:hello@northbaypython.org">hello@northbaypython.org</a></p>
2017-10-05 20:14:55 +00:00
<p>North Bay Python is run by North Bay and Bay Area locals, as a member project of <a href="https://sfconservancy.org">Software Freedom Conservancy</a>, a 501(c)(3) not-for-profit public charity registered in New York. Software Freedom Conservancy's federal tax-exempt EIN is 41-2203632.</p>
<strong>Mailing Address</strong>
<address>
Software Freedom Conservancy, Inc.<br>
137 MONTAGUE ST STE 380<br>
Brooklyn, NY 11201-3548<br>
</address>
{% endblock %}