templates/index.html
author nishanth
Tue, 13 Apr 2010 15:09:41 +0530
changeset 34 c12a0b773720
parent 26 9d18daf5277f
child 47 e1895d2ede97
permissions -rw-r--r--
prettifying the view event page .

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