{% extends 'base.html.twig' %} {% block breadcrumb %} {% endblock %} {% block page_title %} {{ project.name }} {% for tag in project.tags %} {{ tag.name }} {% endfor %} {% endblock %} {% block page_content %}
Revenir aux projets Modifier le projet Supprimer le projet Créer une tâche
{% if project.description is not empty %}
{{ project.description|markdown_to_html }}
{% endif %}

Carte

{% if project.tasks is not empty %}
{% set stats = taskLifecycleManager.getProjectStats(project) %} {% for place, data in stats %}
{{ data.percentage|format_number({fraction_digit: 0}) ~ '%' }}
{% endfor %}
{% for task in project.tasks %} {% endfor %}
Identifiant Nom État Importance Urgence
{{ task.id }} {{ task.name }} {{ workflow_metadata(task, 'title', task.status) }} {{ task.important }} {{ task.urgent }}
{% endif %} {% endblock %}