{% extends "tasks/base.html" %} {% load i18n %} {% load tasks_tags %} {% load shorttimesince_tag %} {% load humanize %} {% block head_title %}Tasks for {{ other_user }}{% endblock %} {% block body %}

{% blocktrans %}Tasks for {{ other_user }}{% endblocktrans %}

You can drag this '{{ site_name }} Tasks' link to your bookmark bar to quickly get to your open tasks!

Assigned Tasks

{% if assigned_tasks %} {% regroup assigned_tasks by get_state_display as grouped_tasks %} {% for section in grouped_tasks %} {% for task in section.list %} {% endfor %} {% endfor %}
ID Summary Last Modified Tags Status
{{ section.grouper }} ({{ section.list|length }})
{{ task.id }} {{ task.summary }} {{ task.modified|shorttimesince }} ago {% task_tags task %} {{ task.status }}
{% else %} {% trans "You have no assigned tasks right now." %} {% endif %}

Created Tasks

{% if created_tasks %} {% regroup created_tasks by get_state_display as grouped_tasks %} {% for section in grouped_tasks %} {% for task in section.list %} {% endfor %} {% endfor %}
ID Summary Last Modified Tags Status
{{ section.grouper }} ({{ section.list|length }})
{{ task.id }} {{ task.summary }} {{ task.modified|shorttimesince }} ago {% task_tags task %} {{ task.status }}
{% else %} {% trans "You have no created tasks right now." %} {% endif %} {% endblock %}