templates/list_attendees.html
author nishanth
Fri, 16 Apr 2010 17:53:04 +0530
changeset 89 9ab7fca05f38
parent 88 24423b3db4b2
child 90 d18d31b07553
permissions -rw-r--r--
fixed another typo

{% 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.affiliated_to}}</td>
			<td>{{a_user.get_profile.interests}}</td>
		</tr>
	{% endfor %}
	</table>
{% endblock %}