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

Your page - {{ person.name }}

Name: {{ person.fullname }}

Email: {{ person.email }}

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

{% if canUpdatePerson %}
Do you wish to edit this profile?

{% endif %} {% if canDeletePerson %}
Do you wish to delete your account?

{% endif %} {% else %} {% if person %}

{{ person.name }}’s profile page

This is the profile page for {{ person.fullname }} ({{ person.name }}).

{% 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 %} {% endif %} {% endblock %} {% block primarysidebar %} {% if isSessionPerson %}

Your Projects

{% endif %}

Using KForge

{% endblock %}