init page issues

This commit is contained in:
Cédric OLIVIER
2026-05-22 17:56:43 +02:00
parent c6cd273632
commit 9fbcf805c7
6 changed files with 185 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
<header class="page-header">
<div>
<h1>Issues</h1>
<p>Suivi des tickets et anomalies du projet.</p>
</div>
<button type="button" class="create-button" (click)="createIssue()">
Creer
</button>
</header>
<section class="table-wrapper" aria-label="Tableau des issues">
<table>
<thead>
<tr>
<th>Titre</th>
<th>Priorite</th>
<th>Statut</th>
<th>Assignee</th>
</tr>
</thead>
<tbody>
@for (issue of issues(); track issue.id) {
<tr>
<td>{{ issue.title }}</td>
<td>{{ issue.priority }}</td>
<td>{{ issue.status }}</td>
<td>{{ issue.assignee }}</td>
</tr>
}
</tbody>
</table>
</section>