{% load i18n %} {% if user.is_authenticated %}
  • {% trans 'Welcome,' %} {% firstof user.first_name user.username %}
  • {% trans "Change password" %}
  • {% trans "Log out" %}
  • {% else %}
  • {% trans 'Welcome,' %} {% trans 'Anonymous' %}
  • {% trans "Log in" %}
  • {% endif %}