{% 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.get_profile.communication %} {% 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 %} {% endif %} {% if user_to_show.get_profile.communication.phone_mobile %} {% endif %} {% if user_to_show.get_profile.communication.fax %} {% endif %} {% endif %} {% if departments %} {% for department in departments %} {% endfor %} {% endif %} {% for project in projects %} {% endfor %}

{% trans "Communication" %}

{{ user_to_show.get_profile.communication.url }}
{{ user_to_show.get_profile.communication.email }}
{{ user_to_show.get_profile.communication.phone_landline }}
{{ user_to_show.get_profile.communication.phone_mobile }}
{{ user_to_show.get_profile.communication.fax }}

{% trans "Departments" %}

{{ department }}

{% trans "Projects" %}

{{ project }}
{% endblock %}