{% extends "base.html" %} {% load i18n static socialprofile_tags %} {% block headtitle %}{% trans "Profile for " %}{{ user.username }}{% endblock %} {% block content %}

{{ user.username }}

{% if user.is_authenticated %}
{% trans 'You are logged in as' %} {{ user.username }} {% trans 'with email' %}{{ user.email }}! {% trans 'Logout' %}
{{ user.first_name }} {{ user.last_name }}
{% if request.user.username == user.username %}
{% trans 'Edit' %} {% trans 'Active Sessions' %}
{% endif %} {% else %}
{% trans 'You are not logged in!' %}
{% trans 'Login' %}
{% endif %}
{% endblock %}