{% load url from future %} {% load static from staticfiles %} {% 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 %}

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

{% trans "Login" %}

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

{% trans "Forgotten password?" %}

{% endif %}
{% if GOAUTH2_ENABLED %}
{% trans
{% endif %} {% endif %}