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

Tasks for {% user_display other_user %}

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

Nudged Tasks

{% if nudged_tasks %}
{% regroup nudged_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 group %} {{ task.status }}
{% else %} {% trans "You have no nudged tasks right now." %} {% endif %}

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 group %} {{ 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 group %} {{ task.status }}
{% else %} {% trans "You have no created tasks right now." %} {% endif %} {% endblock %}