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

Tasks for {{ 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 %}