{% extends 'base.html' %} {% load humanize %} {% load static %} {% block title %}Update task{% endblock %} {% block extrahead %} {% 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 %}

Update the task

{% csrf_token %}
{% if categories %}
{% endif %} {% if task_statuses %}
{% endif %}
{% if task.task_images %}
images:
{% endif %}

Problem description

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

Progress

{{ task.progress_description|linebreaksbr }} {% endif %} {% if rendered_configuration_html %}

Configuration

{{ rendered_configuration_html }} {% endif %}
{% endblock %}