29 lines
931 B
HTML
Raw Normal View History

<h1 class="title">Tickets</h1>
<include href="/ui/session/error.html">
<p><a class="button" href="/ticket/create">create ticket</a></p>
2025-02-09 20:04:45 +00:00
<hr>
<table class="table is-fullwidth is-bordered">
<thead>
<tr class="has-background-warning">
2025-02-11 09:26:33 +00:00
<th>id</th><th>title</th>
2025-02-09 20:04:45 +00:00
<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>
2025-02-09 20:04:45 +00:00
<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>
2025-02-09 20:04:45 +00:00
</tr>
</repeat>
</tbody>
</table>