{% load i18n %} {% load account_tags %} {% load extra_tagging_tags %} {% load tasks_tags %} {% load avatar_tags %} {% load shorttimesince_tag %} {% load threadedcommentstags %} {% load markup_tags %} {% load group_tags %} {% load theme_tags %}
{% if task.assignee %}
{% avatar task.assignee 40 %}
{% trans "Assignee" %}: {% user_display task.assignee %}
{% else %} {% trans "Unassigned" %} {% endif %}
{% trans "State" %}: {{ task.get_state_display }}
{% trans "Creator" %}: {% user_display task.creator %}
{% trans "Created" %}: {{ task.created|date }}
{% trans "Modified" %}: {{ task.modified|shorttimesince }} ago
{% trans "History of this Task" %}
Nudges: {{ nudge.count }} {% if nudge.history %} nudge list {% endif %}
{% if nudge.history %}
    {% for item in nudge.history %}
  1. {% user_display item.nudger %} {{ item.modified|shorttimesince }}
  2. {% endfor %}
{% endif %}
{% if nudge.nudgeable %} {% if nudge.nudge %} You have nudged this task.
Denudge task {% else %} nudge task {% endif %} {% endif %}

#{{ task.id }}: {{ task.summary }}

{{ task.detail|apply_markup:task.markup }}
{% get_comment_count for task as comment_count %} {% if comment_count %} {{ comment_count }} comment{{ comment_count|pluralize }}; {% endif %} {% trans "Status" %}: {% if task.status %} {{ task.status }} {% else %} {% trans "none" %} {% endif %}

{% silk "tag_blue" %} {% task_tags task group %}