mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-24 00:23:50 +00:00
add task type in list
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="chill-red">{{ 'Title'|trans }}</th>
|
||||
{# <th class="chill-green">{{ 'Task type'|trans }}</th> #}
|
||||
<th class="chill-green">{{ 'Task type'|trans }}</th>
|
||||
{% if person is null %}
|
||||
<th>{{ 'Person'|trans }}</th>
|
||||
{% endif %}
|
||||
@@ -18,7 +18,7 @@
|
||||
{% for task in tasks %}
|
||||
<tr>
|
||||
<td>{{ task.title }}</td>
|
||||
{# <td>{{ task.type }}</td> #}
|
||||
<td>{{ task_workflow_metadata(task, 'definition.name') }}</td>
|
||||
{% if person is null %}
|
||||
<td><a href="{{ path('chill_person_view', {person_id : task.person.Id}) }}">{{ task.person}}</a></td>
|
||||
{% endif %}
|
||||
|
Reference in New Issue
Block a user