blob: 67339f26ceb229ab1a886bb5af5abbe61d3c8352 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
</head>
<body>
<!-- TODO: Replace all New Zealand specific things in this file -->
<table cellpadding="0" cellspacing="0" width="800px">
<tr>
<td>
<img src="http://scipy.org/images/scipylogo.gif"
alt="SciPy.in Logo" title="SciPy.in Logo"
width="72" />
<br /><br />
</td>
<td align="right">
41 Hihitahi Rise<br />
Te Haumi, Paihia 0200<br />
Incorporated Society #2250349<br />
</td>
</tr>
</table>
<table cellpadding="0" cellspacing="0" width="800px">
<tr>
<td>
<h1>New Zealand Python Users Group Incorporated</h1>
</td>
</tr>
<tr>
<td>
<hr />
<table cellpadding="0" cellspacing="0" width="800px">
<tr>
<td>Invoice Number: {{ registration.slug }}</td>
<td align="right">
Date: {{ registration.submitted|date:"d F, Y"}}</td>
</tr>
</table>
<hr />
</td>
</tr>
<tr>
<td>
<br />
<br />
To:<br />
{{ user.get_profile.fullname }}<br />
{{ user.email }}<br />
< {{ user.username }} ><br />
</td>
</tr>
<tr>
<td>
<br />
<br />
</td>
</tr>
<tr>
<td>
<table cellpadding="0" cellspacing="0" width="800px">
<tr>
<th align="left">Item</th>
<th align="right">Price</th>
<th align="right">Qty</th>
<th align="right">Amount (NZ$)</th>
</tr>
<tr>
<td colspan="4"><hr /></td>
</tr>
<tr>
<td>NZPycon 2009 Attendence fee</td>
<td align="right">{{ registration.amount }}.00</td>
<td align="right">1</td>
<td align="right">{{ registration.amount }}.00</td>
</tr>
<tr>
<td colspan="4"><hr /></td>
</tr>
<tr>
<td colspan="3"><strong>Total</strong></td>
<td align="right"><strong>${{ registration.amount }}.00</strong></td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<br />
<br />
</td>
</tr>
{% if registration.sponsor %}
<tr>
<td>
As a guest of {{ registration.sponsor|title }} please ignore this invoice.
</td>
</tr>
{% endif %}
{% if registration.discount %}
<tr>
<td>
Your fee has been discounted because you are a student or otherwise on a
low income. You will be required to present your Student ID or a Community
Services Card on arrival.
</td>
</tr>
{% endif %}
{% ifequal registration.amount 10 %}
<tr>
<td>
Your fee has been discounted because you are a presenter at NZPycon 2009.
</td>
</tr>
{% endifequal %}
<tr>
<td><strong>Thanks for your registration!</strong>
</tr>
<tr>
<td align="right">
<br />
{% if registration.payment %}
{% if registration.sponsor %}
<strong>Thank you, no payment required</strong>
{% else %}
<strong>Thank you, this invoice has been paid</strong>
{% endif %}
{% else %}
<strong>Please pay to:</strong><br />
New Zealand Python User Group<br />
06-0158-0360348-00<br />
The National Bank<br />
Auckland University Branch<br />
PO Box 2132<br />
{% endif %}
</td>
</tr>
</table>
</body>
</html>
|