templates/index.html
author nishanth
Thu, 15 Apr 2010 14:15:44 +0530
changeset 42 0f926874a695
parent 34 c12a0b773720
child 47 e1895d2ede97
permissions -rw-r--r--
added the files I forgot to add in previous commit

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