templates/index.html
author nishanth
Thu, 15 Apr 2010 13:59:46 +0530
changeset 41 ab0a8a72b069
parent 34 c12a0b773720
child 47 e1895d2ede97
permissions -rw-r--r--
added view report functionality. have to make it look better.

{% 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 %}