index.html
author nishanth
Mon, 12 Apr 2010 11:23:27 +0530
changeset 11 334550460bd7
permissions -rw-r--r--
added the view event functionality and submitting feedback according to the status .
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
11
334550460bd7 added the view event functionality and submitting feedback according to the status .
nishanth
parents:
diff changeset
     1
{% extends "base.html" %}
334550460bd7 added the view event functionality and submitting feedback according to the status .
nishanth
parents:
diff changeset
     2
{% block content %}
334550460bd7 added the view event functionality and submitting feedback according to the status .
nishanth
parents:
diff changeset
     3
	{% for event in events %}
334550460bd7 added the view event functionality and submitting feedback according to the status .
nishanth
parents:
diff changeset
     4
		<a href="/reg/event/view/{{event.key}}">{{event.title}}</a><br />
334550460bd7 added the view event functionality and submitting feedback according to the status .
nishanth
parents:
diff changeset
     5
	{% endfor %}
334550460bd7 added the view event functionality and submitting feedback according to the status .
nishanth
parents:
diff changeset
     6
{% endblock %}