detail de l'issue

This commit is contained in:
Cédric OLIVIER
2026-05-22 18:03:06 +02:00
parent 9fbcf805c7
commit f6acfd0e30
8 changed files with 242 additions and 14 deletions
@@ -0,0 +1,47 @@
<header class="page-header">
<h1>Detail de l'issue</h1>
<p>Informations de creation et de suivi de l'issue.</p>
</header>
<section class="detail-card" aria-label="Informations de l'issue">
<table>
<tbody>
<tr>
<th>ID</th>
<td>{{ issue().id }}</td>
</tr>
<tr>
<th>Nom</th>
<td>{{ issue().name }}</td>
</tr>
<tr>
<th>Epic</th>
<td>{{ issue().epic }}</td>
</tr>
<tr>
<th>Assignee</th>
<td>{{ issue().assignee }}</td>
</tr>
<tr>
<th>Date d'echeance</th>
<td>{{ issue().dueDate }}</td>
</tr>
<tr>
<th>Description</th>
<td>{{ issue().description }}</td>
</tr>
<tr>
<th>Priorite</th>
<td>{{ issue().priority }}</td>
</tr>
<tr>
<th>Status</th>
<td>{{ issue().status }}</td>
</tr>
<tr>
<th>Progression</th>
<td>{{ issue().progress }}%</td>
</tr>
</tbody>
</table>
</section>