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

{% if user.is_active %} {% if registered_events %} You have registered for the following workshops: {% endif %} {% else %} Your account is inactive. An activation email has been sent to your email address.
Click here to resend the activation email.
{% endif %} {% endif %} {% if user.is_staff %} Create an event
{% endif %} {% endblock %}