29 lines
931 B
HTML
29 lines
931 B
HTML
<h1 class="title">Tickets</h1>
|
|
<include href="/ui/session/error.html">
|
|
<p><a class="button" href="/ticket/create">create ticket</a></p>
|
|
<hr>
|
|
|
|
<table class="table is-fullwidth is-bordered">
|
|
<thead>
|
|
<tr class="has-background-warning">
|
|
<th>id</th><th>title</th>
|
|
<th>status</th><th>priority</th><th>created_at</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<repeat group="{{@tickets}}" value="{{@ticket}}">
|
|
<tr>
|
|
<td>{{@ticket.id}}</td>
|
|
<td><a href="/ticket/{{@ticket.id}}">{{@ticket.title}}</a></td>
|
|
<td>{{@ticket.status}}</td>
|
|
<td>{{@ticket.priority}}</td>
|
|
<td>{{@ticket.created_at}}</td>
|
|
<td>
|
|
<a href="/ticket/{{@ticket.id}}/edit"><i class="fa fa-edit"></i></a>
|
|
</td>
|
|
</tr>
|
|
</repeat>
|
|
</tbody>
|
|
</table> |