templates/index.html
author nishanth
Thu, 15 Apr 2010 12:36:21 +0530
changeset 39 61d558a69b0d
parent 34 c12a0b773720
child 47 e1895d2ede97
permissions -rw-r--r--
implemented listing of feedbacks.

{% extends "base.html" %}
{% block content %}
	{% if not user.is_authenticated %}
		Welcome Guest.<br />
		<br />
		You can know about workshops by clicking on workshops link on the left.<br />		
	{% else %}
		Welcome {{user.get_full_name}}<br />
	{% endif %}
	{% if user.is_staff %}
		<a href="/reg/event/create">Create an event</a><br />	
	{% endif %}
{% endblock %}