{% load url from future %} {% load i18n %} {% if user.is_authenticated %}

{% trans "You" %}

{% blocktrans with username=user.username|title %}Welcome {{ username }}.{% endblocktrans %}

{% trans "Profile" %} {% trans "Logout" %}

{% trans "Tags" %}

{% if user.is_authenticated %} {% for tag in user.profile.favourite_tags.all %}

{{ tag.name }}

{% empty %}

{% blocktrans %}Add Favourite Tags on the {% endblocktrans %} {% trans "profile" %} {% blocktrans %}page to see them here.{% endblocktrans %}

{% endfor %}

Groups

{% for g in user.groups.all %}

{{ g.name }}

{% empty %}

{% blocktrans %}If you are a member of any groups, you will see them listed here. {% endblocktrans %}

{% endfor %} {% endif %} {% else %}

Login

{% csrf_token %} {% if not LDAP_ENABLED %}

Forgotten password?

{% endif %}
{% endif %}