{% extends "tasks/base.html" %} {% load i18n %} {% load account_tags %} {% load shorttimesince_tag %} {% load tasks_tags %} {% load pagination_tags %} {% load group_tags %} {% block head_title %}Tasks History{% endblock %} {% block body %}

History for all Tasks

This page shows all changes on all tasks.

{% autopaginate task_history 50 %} {% paginate %} {% for change in task_history %} {% if change.status %} {% endif %} {% if change.comment %} {% endif %} {% endfor %}
ID Modifier Modified Summary Assignee Tags State
{{ change.task.id }} {% if change.owner %} {% user_display change.owner %} {% endif %} {% if change.nudger %} {% user_display change.nudger %} {% endif %} {{ change.modified|shorttimesince }} {{ change.summary }} {% if change.nudger %} nudged {% endif %} {% if change.nudger %} nudged {% else %} {% if change.assignee %} {% user_display change.assignee %} {% else %} unassigned {% endif %} {% endif %} {% task_tags change group %} {{ change.get_state_display }} {% if change.get_resolution_display %}
{{ change.get_resolution_display }} {% endif %}
Status {{ change.status }}
Comment {{ change.comment|striptags|urlize }}
{% paginate %} {% endblock %}