diff -r 17966ca75ca9 -r 9d18daf5277f templates/index.html --- a/templates/index.html Tue Apr 13 14:29:00 2010 +0530 +++ b/templates/index.html Tue Apr 13 14:50:48 2010 +0530 @@ -1,8 +1,14 @@ {% extends "base.html" %} {% block content %} + {% if not user.is_authenticated %} + Welcome Guest.
+
+ You can know about workshops by clicking on workshops link on the left.
+ {% else %} + Welcome {{user.get_full_name}}
+
Workshops you have registered for: + {% endif %} {% if user.is_staff %} Create an event
{% endif %} - List of Workshops - {% endblock %}