templates/index.html
author nishanth
Tue, 13 Apr 2010 14:29:00 +0530
changeset 25 17966ca75ca9
parent 19 115860e87238
child 26 9d18daf5277f
permissions -rw-r--r--
now user cannot login when he is inactive .

{% extends "base.html" %}
{% block content %}
	{% if user.is_staff %}
		<a href="/reg/event/create">Create an event</a><br />	
	{% endif %}
	<a href="/reg/event/list">List of Workshops</a> 

{% endblock %}