working on task display
This commit is contained in:
@@ -107,6 +107,22 @@
|
|||||||
<td class="task due date">{task.due_date}</td>
|
<td class="task due date">{task.due_date}</td>
|
||||||
</tr>
|
</tr>
|
||||||
{/if}
|
{/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}
|
{#if children}
|
||||||
<tr>
|
<tr>
|
||||||
<th>{t('subtasks')}</th>
|
<th>{t('subtasks')}</th>
|
||||||
|
|||||||
Reference in New Issue
Block a user