diff -r c52d170969f0 -r 334550460bd7 view_event.html
--- a/view_event.html Mon Apr 12 04:23:13 2010 +0530
+++ b/view_event.html Mon Apr 12 11:23:27 2010 +0530
@@ -1,4 +1,41 @@
{% extends "base.html" %}
{% block content %}
-
+
{{ event.title }}
+ Description:
+ {{event.description}}
+ duration of the workshop: {{event.start_date}} to {{event.stop_date}}
+ {% if not is_guest %}
+ {% if is_attendee %}
+ You have registered for this workshop.
+ {% else %}
+ Click here to register for the workshop.
+ {% endif %}
+ {% endif %}
+
+ {% if can_submit_feedback %}
+ Click here to submit feedback for today's session.
+
+ {% if is_org %}
+ {% if event.registration_is_open %}
+ Click here to close the registration.
+ {% else %}
+ Click here to open the registration.
+ {% endif %}
+
+ {% ifequal quiz_status "00" %}
+ Click here to open quiz.
+ {% else %}
+ Click here to close the registration.
+ {% endifequal %}
+
+ {% ifequal feedback_status "0" %}
+ Click here to open the feedback.
+ {% else %}
+ Click here to see the feedbacks that we submitted.
+ Click here to close the feedback.
+ {% endifequal %}
+ {% endif %}
+
+
+ {% endif %}
{% endblock %}