init page issues
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user