mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-13 22:04:23 +00:00
add assignee in task list + fix some translation
This commit is contained in:
parent
c36778184d
commit
7c113e3478
@ -2,4 +2,6 @@ Branch master
|
|||||||
=============
|
=============
|
||||||
|
|
||||||
- fix bug in filter task form: allow to show the list of users, which was hidden when the user had access to multiple centers;
|
- fix bug in filter task form: allow to show the list of users, which was hidden when the user had access to multiple centers;
|
||||||
|
- add assignee in task list;
|
||||||
|
- fix some translation;
|
||||||
|
|
||||||
|
@ -59,7 +59,7 @@ Any user: Tous les utilisateurs
|
|||||||
Unassigned: Non assigné
|
Unassigned: Non assigné
|
||||||
Associated person: Personne associée
|
Associated person: Personne associée
|
||||||
Default task: Tâche par défaut
|
Default task: Tâche par défaut
|
||||||
|
Not assigned: Aucun utilisateur assigné
|
||||||
|
|
||||||
# transitions - default task definition
|
# transitions - default task definition
|
||||||
'new': 'nouvelle'
|
'new': 'nouvelle'
|
||||||
|
@ -26,6 +26,14 @@
|
|||||||
{% for place in workflow_marked_places(task) %}
|
{% for place in workflow_marked_places(task) %}
|
||||||
<span class="">{{ place|trans }}</span>
|
<span class="">{{ place|trans }}</span>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
|
{% if task.assignee is not null %}
|
||||||
|
<dl>
|
||||||
|
<dt>{{ 'Assignee'|trans }}</dt>
|
||||||
|
<dd>{{ task.assignee.username }}</dd>
|
||||||
|
</dl>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
{% if task.startDate is null and task.warningDate is null and task.endDate is null %}
|
{% if task.startDate is null and task.warningDate is null and task.endDate is null %}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user