{% extends "base.html" %} {% load i18n %} {% load markup %} {% block title %}{% trans "User" %}{% endblock %} {% block page-title %} {% trans "Profile for" %}: {{ user_to_show }} {% endblock %} {% block sub-navigation %} {% endblock %} {% block content %} {% if user_to_show.first_name or user_to_show.last_name%}

{% trans 'Name' %}

{{ user_to_show.first_name }}

{{ user_to_show.last_name }}

{% endif %} {% if user_to_show.get_profile.communication %}

{% trans 'Communication' %}

{% if user_to_show.get_profile.address %}
{{ user_to_show.get_profile.address.get_addressstring|markdown }}
{% endif %} {% if user_to_show.get_profile.communication.url %} {% endif %} {% if user_to_show.get_profile.communication.email %} {% endif %} {% if user_to_show.get_profile.communication.phone_landline %}

{{ user_to_show.get_profile.communication.phone_landline }}

{% endif %} {% if user_to_show.get_profile.communication.phone_mobile %}

{{ user_to_show.get_profile.communication.phone_mobile }}

{% endif %} {% if user_to_show.get_profile.communication.fax %}

{{ user_to_show.get_profile.communication.fax }}

{% endif %}
{% endif %} {% if departments %}

{% trans 'Departments' %}

{% endif %} {% if projects %}

{% trans 'Projects' %}

{% endif %} {% endblock %}