|
|
|
|
@ -107,6 +107,22 @@
@@ -107,6 +107,22 @@
|
|
|
|
|
<td class="task due date">{task.due_date}</td> |
|
|
|
|
</tr> |
|
|
|
|
{/if} |
|
|
|
|
{#if task.estimated_time} |
|
|
|
|
<tr> |
|
|
|
|
<th>{t('estimated_time')}</th> |
|
|
|
|
<td class="estimated time">{task.estimated_time} h</td> |
|
|
|
|
</tr> |
|
|
|
|
{/if} |
|
|
|
|
<tr> |
|
|
|
|
<th>{t('members')}</th> |
|
|
|
|
<td> |
|
|
|
|
<ul> |
|
|
|
|
{#each Object.values(task.members) as member} |
|
|
|
|
<li>{member.user.name} ({t('permission_'+member.permission.name.toLowerCase())})</li> |
|
|
|
|
{/each} |
|
|
|
|
</ul> |
|
|
|
|
</td> |
|
|
|
|
</tr> |
|
|
|
|
{#if children} |
|
|
|
|
<tr> |
|
|
|
|
<th>{t('subtasks')}</th> |
|
|
|
|
|