templates/list_attendees.html
author nishanth
Fri, 16 Apr 2010 16:37:28 +0530
changeset 75 bda9ee536063
parent 23 42e2a810e1c8
child 87 5c0e1c1d39aa
permissions -rw-r--r--
changed the urls to /workshop/registration/.. from /reg/.. in all the templates

{% extends "base.html" %}
{% block content %}
	List of people registered for <a href="/workshop/registration/event/view/{{event.key}}">{{event.title}}</a><br /><br />
	<table cellspacing=5 cellpadding=5>
	<tr>
		<td>Name</td>
		<td>Gender</td>
		<td>Profession</td>
		<td>College/Company</td>
		<td>Interests</td>
	</tr>
	{% for a_user in attendees %}
		<tr>
			<td>{{a_user.get_full_name}}</td>
			<td>{{a_user.get_profile.gender}}</td>
			<td>{% ifequal a_user.get_profile.profession "S" %}
				Student
				{% else %}
					{% ifequal a_user.get_profile.profession "F" %}
						Faculty
					{% else %}
						Professional
					{% endifequal %}
				{% endifequal %}
			</td>
			<td>{{a_user.get_profile.interests}}</td>
		</tr>
	{% endfor %}
	</table>
{% endblock %}