{% extends "projector/home.html" %} {% load i18n %} {% block col-left %} {% if user.get_profile %}
{% trans "User" %}: {{ profile.user }}
{% if user == profile.user %} {% endif %}
{% endif %} {% endblock %} {% block col-main %} {% if user.get_profile %}
{% trans "Your homepage" %}
{% trans "User" %} {{ profile.user.username }}
{% trans "Full name" %} {{ profile.user.get_full_name }}
E-mail {{ profile.user.email }}

{% trans "Tasks to do" %}

{% regroup owned_task_list by project as project_list %} {% for project in project_list %}

{{ project.grouper }}

{% for task in project.list %} {% endfor %}
{% trans "Status" %} ID {% trans "Deadline" %} {% trans "Summary" %}
{{ task.status }} {{ task.id }} {% if task.deadline %} {{ task.deadline }} {% else %} {% trans "Not set" %} {% endif %} {{ task.summary }}
{% endfor %}
{% endif %} {% endblock %}