diff -r 05248e27104a -r cd6911eaac2c templates/view_event.html
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/templates/view_event.html Mon Apr 12 13:49:00 2010 +0530
@@ -0,0 +1,40 @@
+{% 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 day {{event.feedback_status}}.
+ {% endif %}
+
+ {% if is_org %}
+ {% if event.registration_is_open %}
+ Click here to close the registration.
+ {% else %}
+ Click here to open the registration.
+ {% endif %}
+
+ {% ifequal event.quiz_status "00" %}
+ Click here to open quiz.
+ {% else %}
+ Click here to close the registration.
+ {% endifequal %}
+
+ {% ifequal event.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 for day {{event.feedback_status}}.
+ {% endifequal %}
+ {% endif %}
+
+{% endblock %}