source: remit/remit_templates/vouchers/emails/vouchers_tex.txt @ 70a9bbd

client
Last change on this file since 70a9bbd was 5eb287f, checked in by Alex Dehnert <adehnert@…>, 15 years ago

Disable escaping for emails (Trac: #28)

  • Property mode set to 100644
File size: 562 bytes
Line 
1{% load misc %}
2{% autoescape off %}
3Dear admins,
4
5User '{{converter}}' ({{converter.first_name}} {{converter.last_name}} --- {{converter.email}}) just converted vouchers to LaTeX.
6
7Number of vouchers: {{vouchers|length}}
8Mark:               {{mark}}
9Unprocessed only:   {{unprocessed}}
10
11{% for f in vouchers %}
12Voucher {{f.pk}}
13Account:     {{f.account}}
14GL:          {{f.gl}}
15Amount:      {{f.amount}}
16Name:        {{f.first_name}} {{f.last_name}}
17Email:       {{f.email_address}}
18Description: {{f.description}}
19{% endfor %}
20
21Thanks,
22Remit
23{% endautoescape %}
Note: See TracBrowser for help on using the repository browser.