18 lines
813 B
Text
18 lines
813 B
Text
{% autoescape off %}Hi {{ order.name }},
|
|
|
|
Thanks so much for being a sustainer! Your support is what makes our work possible.
|
|
|
|
Order: #{{ order.id }}
|
|
Payment: ${{ order.amount }}{% if order.recurring %} {{ order.get_recurring_display }}{% endif %}
|
|
Acknowledge me on the list of sustainers: {{ order.acknowledge_publicly|yesno }}
|
|
Add me to the announcements email list: {{ order.add_to_mailing_list|yesno }}
|
|
T-shirt: {{ order.get_tshirt_size_display }}{% if order.tshirt_size %}
|
|
Postal address:
|
|
{{ order.street }}
|
|
{{ order.city }} {{ order.state }} {{ order.zip_code }}
|
|
{{ order.country }}{% endif %}
|
|
{% if order.recurring == 'month' and order.tshirt_size %}
|
|
Please note that you may not receive the T-shirt until you've paid at least $60.{% endif %}
|
|
|
|
Kind regards,
|
|
Software Freedom Conservancy{% endautoescape %}
|