* Put some useful content in the character_changed template.
[matthijs/projects/xerxes.git] / templates / influences / email / influence_changed.html
1 {% load gapless %}{% gapless %}
2 {% load i18n %}
3 {% autoescape off %}
4 From: Inschrijfsysteem <inschrijf@evolution-events.nl>
5 {% if created %}
6 Subject: {% blocktrans %}Influence "{{ influence }}" submitted.{% endblocktrans %}
7 {% else %}
8 Subject: {% blocktrans %}Influence "{{ influence }}" was changed.{% endblocktrans %}
9 {% endif%}
10 \\
11 {% if recipients.0.first_name %}
12 {% blocktrans with recipients.0.first_name as name %}Hello {{ name }}{% endblocktrans %},
13 {% else %}
14 {% trans "L.S." %},
15 {% endif %}
16 \\
17 {% filter wordwrap:72 %}
18 {% blocktrans with influence.created|date:"j F Y" as creation_date %}
19 You have submitted an influence on {{ creation_date }}.
20 {% endblocktrans %}
21 {% if not created %}
22 {% blocktrans %}The influence has been modified. The current status is{%endblocktrans %}:{% else %}{% blocktrans %}You submitted{% endblocktrans%}:
23 {% endif %}
24 {% endfilter %}
25 \\
26 {% filter ljust:20%}{% trans "Character" %}:{%endfilter%}{{ influence.character }}
27 {% filter ljust:20%}{% trans "Contact" %}:{%endfilter%}{{ influence.contact }}
28 {% filter ljust:20%}{% trans "Summary" %}:{%endfilter%}{{ influence.summary }}
29 {% filter ljust:20%}{% trans "Status" %}:{%endfilter%}{{ influence.get_status_display }}
30 {% filter ljust:20%}{% trans "Long term" %}:{%endfilter%}{{ influence.longterm|yesno|capfirst }}
31 {% trans "Description" %}:
32 {% filter wordwrap:72 %}
33 {{ influence.description }}
34 {% endfilter %}
35 {% if influence.result %}
36 {% trans "Result" %}:
37 {% filter wordwrap:72 %}
38 {{ influence.result }}
39 {% endfilter %}
40 {% endif %}
41 {% endautoescape %}
42 {% endgapless %}