{% extends "projector/project/task/base.html" %} {% load markup %} {% load native %} {% block extra-head %} {{ block.super }} {% endblock %} {% load i18n %} {% comment %} {% block col-left %}{{ block.super }}
{% trans "Task" %} Id | {{ task.id }} | |
---|---|---|
{% trans "Revision" %} | {{ task.revision }} | |
{% trans "Project" %} | {{ task.project }} | |
{% trans "Component" %} | {{ task.component }} | |
{% trans "Type" %} | {{ task.type }} | |
{% trans "Milestone" %} | {% if task.milestone %}{{ task.milestone }} | {% else %}- | {% endif %}
{% trans "Summary" %} | {{ task.summary }} | |
{% trans "Reported by" %} | {{ task.author }} | |
{% trans "Reported date" %} | {{ task.created_at|date:"Y-m-d H:i:s" }} | |
{% trans "Last modified at" %} | {{ task.edited_at|date:"Y-m-d H:i:s" }} | |
{% trans "Deadline" %} |
{% if task.deadline %}
{{ task.deadline|date:"Y-m-d" }}
{% if now > task.deadline %}
|
|
{% trans "Assigned to" %} | {{ task.owner }} | |
{% trans "Priority" %} | {{ task.priority }} | |
{% trans "Status" %} | {{ task.status }} |
{% trans "If you want to contribute, please" %} {% trans "login" %}.
{% endif %} {% endcomment %}