source: remit/remit_templates/vouchers/voucher.tex @ 1d4c89e

client
Last change on this file since 1d4c89e was 92ca60e, checked in by Alex Dehnert <adehnert@…>, 15 years ago

Rename treasury to remit

  • Property mode set to 100644
File size: 831 bytes
Line 
1{% load latex %}
2{% autoescape off %}
3\documentclass{mitvoucher}
4
5\signatoryemail{esp-treasurer@mit.edu}
6
7\begin{document}
8{% for f in forms %}
9\begin{voucher}
10\groupname{ {{f.group_name|texescape}} }
11\costobject{ {{f.account|texescape}} }
12\signatory{ {{f.signatory|texescape}} }
13\bycheck{}
14\payablefirst{ {{f.first_name|texescape}} }
15\payablelast{ {{f.last_name|texescape}} }
16\email{ {{f.email_address|texescape}} }
17{% if f.mailing_address.0 %}\mailone{ {{f.mailing_address.0|texescape}} }
18{% endif %}{% if f.mailing_address.1 %}\mailtwo{ {{f.mailing_address.1|texescape}} }
19{% endif %}{% if f.mailing_address.2 %}\mailthree{ {{f.mailing_address.2|texescape}} }
20{% endif %}\amt{\${{f.amount|texescape}} }
21\desc{
22{{f.description|texescape}}
23}
24\gl{ {{f.gl|texescape}} }
25\end{voucher}
26{% endfor %}
27\end{document}
28{% endautoescape %}
Note: See TracBrowser for help on using the repository browser.