{% extends 'base.html.twig' %} {% block breadcrumb %} {% endblock %} {% block page_title %} {{ task.name }} {{ workflow_metadata(task, 'title', task.status) }} {% endblock %} {% block page_content %}
Revenir au projet Modifier la tâche Supprimer la tâche Télécharger GeoJSON {% for transition in workflow_transitions(task) %} {{ workflow_metadata(task, 'title', transition) }} {% endfor %}
{% if task.description is not empty %}

Description

{{ task.description|markdown_to_html }}
{% endif %}

Carte

Commentaires

{% if task.comments is not empty %}
{% for comment in task.comments %}
{{ comment.content|markdown_to_html }}
{% endfor %}
{% endif %}
{{ form(commentForm) }}
{% endblock %}