{% extends 'base.html.twig' %} {% import 'macro.html.twig' as macro %} {% block breadcrumb %}
            {% include 'partials/_project-metadata.html.twig' %}
            {% if project.hashtags is not empty %}
            
            {% for hashtag in project.hashtags|split(' ') %}
            {{ '#' ~ hashtag }}
            {% endfor %}
            {% endif %}
        
| {{ macro.paginated(tasks, 'column.task.name'|trans, 't.name') }} | {{ macro.paginated(tasks, 'column.task.status'|trans, 't.status') }} | {{ macro.paginated(tasks, 'column.task.important'|trans, 't.important') }} | {{ macro.paginated(tasks, 'column.task.urgent'|trans, 't.urgent') }} | 
|---|---|---|---|
| {{ task.name }} | {{ workflow_metadata(task, 'title', task.status)|trans }} | {{ task.important }} | {{ task.urgent }} | 
{{ comment.content|markdown_to_html }}