fixed a bug in activate user and made a change in activated template .
{% 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 /><br >
{% endif %}
{% if user.is_active and registered_events %}
You have registered for the following workshops:
<ul>
{% for a_event in registered_events %}
<li><a href="/reg/event/view/{{a_event.key}}">{{a_event.title}}</a></li>
{% endfor %}
</ul>
{% endif %}
{% if user.is_staff %}
<a href="/reg/event/create">Create an event</a><br />
{% endif %}
{% endblock %}