Browse Source

working on task display

kanban
Stephan Richter 3 months ago
parent
commit
adf7166bce
  1. 16
      frontend/src/routes/task/View.svelte

16
frontend/src/routes/task/View.svelte

@ -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>

Loading…
Cancel
Save