Fixed #42 -- Configurable e-mail texts

This commit is contained in:
Raphael Michel
2015-12-13 17:33:38 +01:00
parent 1e72c58219
commit d8ca0d527e
15 changed files with 1224 additions and 900 deletions

View File

@@ -1,9 +0,0 @@
{% load i18n %}{% blocktrans with event=event.name url=url|safe %}Hello,
you requested a new password. Please go to the following page to reset your password:
{{ url }}
Best regards,
Your {{ event }} team
{% endblocktrans %}

View File

@@ -1,19 +0,0 @@
{% load i18n %}{% if download %}{% blocktrans with event=event.name url=url %}Hello,
we successfully received your payment for {{ event }}. Thank you!
You will be able to download your ticket at:
{{ url }}
Best regards,
Your {{ event }} team
{% endblocktrans %}{% else %}{% blocktrans with event=event.name url=url %}Hello,
we successfully received your payment for {{ event }}. Thank you!
You can change your order details and view the status of your order at
{{ url }}
Best regards,
Your {{ event }} team
{% endblocktrans %}{% endif %}

View File

@@ -1,13 +0,0 @@
{% load i18n %}{% blocktrans with event=event.name total=order.total|floatformat:2 currency=event.currency paymentinfo=payment date=order.expires|date:"SHORT_DATE_FORMAT" url=url %}Hello,
we successfully received your order for {{ event }} with a total value
of {{ total }} {{ currency }}. Please complete your payment before {{ date }}.
{{ paymentinfo }}
You can change your order details and view the status of your order at
{{ url }}
Best regards,
Your {{ event }} team
{% endblocktrans %}