{% extends "persons/master.html"%} {% block title %} {% if isSessionPerson %} {{ person.getLabelValue|escape }} - Your page {% else %} {% if person %} {{ person.getLabelValue|escape }} - Profile {% else %} Profile - No name specified! {% endif %} {% endif %} {% endblock %} {% block content %} {% if person %} {% if isSessionPerson %}

Welcome, {{ person.getFirstName|escape }}

Login name: {{ person.name|escape }}

Registered name: {{ person.fullname|escape }}

Registered email: {{ person.email|escape }}

This page gives you an overview of the projects you’re associated with, and other useful information about your {{ systemServiceName|escape }} account.

{% else %}

{{ person.getFirstName|escape }}’s profile page

This is the profile page for {{ person.getLabelValue|escape }}.

{% endif %} {% if view.canUpdatePerson %} Do you wish to update this profile?

{% if view.canDeletePerson %} Do you wish to delete this account?

{% endif %} {% endif %} {% else %}

No name specified

You'll need to select a user in order to see a user's profile page.

If you were looking for your profile page, please log in.

{% endif %} {% endblock %}