author | Anoop Jacob Thomas<anoop@fossee.in> |
Thu, 11 Nov 2010 18:43:19 +0530 | |
changeset 210 | b61bcea508ee |
parent 141 | 3a325a865252 |
permissions | -rw-r--r-- |
1
fda1c66b25f9
Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff
changeset
|
1 |
{% extends "base.html" %} |
fda1c66b25f9
Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff
changeset
|
2 |
|
fda1c66b25f9
Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff
changeset
|
3 |
{% block title %} |
fda1c66b25f9
Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff
changeset
|
4 |
Registrations |
fda1c66b25f9
Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff
changeset
|
5 |
{% endblock %} |
fda1c66b25f9
Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff
changeset
|
6 |
|
fda1c66b25f9
Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff
changeset
|
7 |
{% block content %} |
fda1c66b25f9
Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff
changeset
|
8 |
|
141
3a325a865252
Added get_full_name to event and used in required templates.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
20
diff
changeset
|
9 |
<h1>Registration Statistics</h1> |
1
fda1c66b25f9
Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff
changeset
|
10 |
|
fda1c66b25f9
Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff
changeset
|
11 |
{% if over_reg %} |
fda1c66b25f9
Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff
changeset
|
12 |
<div class="notice"> |
fda1c66b25f9
Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff
changeset
|
13 |
We have already reached the total number of registrations for the |
fda1c66b25f9
Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff
changeset
|
14 |
conference. If you would like to be put on a waiting list in the event |
fda1c66b25f9
Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff
changeset
|
15 |
that someone can't make it to the conference, please follow the link |
fda1c66b25f9
Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff
changeset
|
16 |
below to register and we will be in contact if a registration spot comes |
fda1c66b25f9
Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff
changeset
|
17 |
available. |
fda1c66b25f9
Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff
changeset
|
18 |
</div> |
fda1c66b25f9
Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff
changeset
|
19 |
{% endif %} |
fda1c66b25f9
Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff
changeset
|
20 |
|
141
3a325a865252
Added get_full_name to event and used in required templates.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
20
diff
changeset
|
21 |
<p> |
3a325a865252
Added get_full_name to event and used in required templates.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
20
diff
changeset
|
22 |
Currently <strong>{{ registrations }}</strong> people have registered |
3a325a865252
Added get_full_name to event and used in required templates.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
20
diff
changeset
|
23 |
to attend {{ event.get_full_name }}. |
3a325a865252
Added get_full_name to event and used in required templates.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
20
diff
changeset
|
24 |
</p> |
1
fda1c66b25f9
Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff
changeset
|
25 |
|
141
3a325a865252
Added get_full_name to event and used in required templates.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
20
diff
changeset
|
26 |
{% if not registration %} |
3a325a865252
Added get_full_name to event and used in required templates.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
20
diff
changeset
|
27 |
<p> |
3a325a865252
Added get_full_name to event and used in required templates.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
20
diff
changeset
|
28 |
To attend {{ event.get_full_name }} please <a href=" |
3a325a865252
Added get_full_name to event and used in required templates.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
20
diff
changeset
|
29 |
{% url scipycon_submit_registration params.scope %}">register</a> |
3a325a865252
Added get_full_name to event and used in required templates.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
20
diff
changeset
|
30 |
</p> |
3a325a865252
Added get_full_name to event and used in required templates.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
20
diff
changeset
|
31 |
{% endif %} |
1
fda1c66b25f9
Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff
changeset
|
32 |
|
fda1c66b25f9
Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff
changeset
|
33 |
{% endblock %} |