author | nishanth |
Fri, 16 Apr 2010 17:04:41 +0530 | |
changeset 80 | cb36fc4f29df |
parent 75 | bda9ee536063 |
child 87 | 5c0e1c1d39aa |
permissions | -rw-r--r-- |
19 | 1 |
{% extends "base.html" %} |
2 |
{% block content %} |
|
75
bda9ee536063
changed the urls to /workshop/registration/.. from /reg/.. in all the templates
nishanth
parents:
23
diff
changeset
|
3 |
List of people registered for <a href="/workshop/registration/event/view/{{event.key}}">{{event.title}}</a><br /><br /> |
19 | 4 |
<table cellspacing=5 cellpadding=5> |
5 |
<tr> |
|
6 |
<td>Name</td> |
|
7 |
<td>Gender</td> |
|
8 |
<td>Profession</td> |
|
9 |
<td>College/Company</td> |
|
10 |
<td>Interests</td> |
|
11 |
</tr> |
|
12 |
{% for a_user in attendees %} |
|
13 |
<tr> |
|
14 |
<td>{{a_user.get_full_name}}</td> |
|
15 |
<td>{{a_user.get_profile.gender}}</td> |
|
16 |
<td>{% ifequal a_user.get_profile.profession "S" %} |
|
17 |
Student |
|
18 |
{% else %} |
|
19 |
{% ifequal a_user.get_profile.profession "F" %} |
|
20 |
Faculty |
|
21 |
{% else %} |
|
22 |
Professional |
|
23 |
{% endifequal %} |
|
24 |
{% endifequal %} |
|
25 |
</td> |
|
26 |
<td>{{a_user.get_profile.interests}}</td> |
|
27 |
</tr> |
|
28 |
{% endfor %} |
|
29 |
</table> |
|
30 |
{% endblock %} |