36 lines
1.0 KiB
HTML
36 lines
1.0 KiB
HTML
<h1 class="title">View Tickets</h1>
|
|
|
|
<check if="{{isset(@SESSION.error)}}">
|
|
<div class="notification is-warning">
|
|
{{ @SESSION.error }}
|
|
</div>
|
|
</check>
|
|
|
|
<p><a href="/ticket/create">create ticket</a></p>
|
|
<hr>
|
|
|
|
<table class="table is-fullwidth is-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th>id</th><th>title</th><th>description</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>{{@ticket.title}}</td>
|
|
<td>{{@ticket.status}}</td>
|
|
<td>{{@ticket.priority}}</td>
|
|
<td>{{@ticket.created_at}}</td>
|
|
<td>
|
|
<a href="/ticket/{{@ticket.id}}"><i class="fa fa-eye"></i></a>
|
|
<a href="/ticket/{{@ticket.id}}/edit"><i class="fa fa-edit"></i></a>
|
|
</td>
|
|
</tr>
|
|
</repeat>
|
|
</tbody>
|
|
</table> |