{% extends 'base.html' %} {% load humanize %} {% load static %} {% load custom_tags_and_filters %} {% block title %}Resolve task{% endblock %} {% block content %}

{{ task.tool.name }} task

Created by {{ task.creator }} on {{ task.creation_time }} ({{ task.creation_time|naturaltime }}).

{% if task.last_updated and task.last_updated_by %} Last updated by {{ task.last_updated_by }} on {{ task.last_updated }} ({{ task.last_updated|naturaltime }}). {% endif %}

Resolve the task

{% csrf_token %}
{% if categories %}
{% endif %}
{% button type="save" value="Resolve" %}

Problem description

{{ task.problem_description|linebreaksbr }} {% if task.progress_description %}

Progress

{{ task.progress_description|linebreaksbr }} {% endif %}
{% endblock %}