updates to ticket views
This commit is contained in:
parent
05378a735f
commit
39b633d60a
@ -11,6 +11,13 @@
|
||||
|
||||
{{ BulmaForm::horizontal_field_select('Status:', 'status', ['New', 'In Progress', 'On Hold', 'Completed'])}}
|
||||
|
||||
<button class="button is-primary" type="submit">Create Ticket</button>
|
||||
<div class="field is-grouped is-grouped-right">
|
||||
<div class="control">
|
||||
<a class="button is-secondary" href="/tickets">Cancel</a>
|
||||
</div>
|
||||
<div class="control">
|
||||
<button class="button is-primary" type="submit">Create Ticket</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
@ -12,7 +12,7 @@
|
||||
<table class="table is-fullwidth is-bordered">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>id</th><th>title</th><th>description</th>
|
||||
<th>id</th><th>title</th>
|
||||
<th>status</th><th>priority</th><th>created_at</th>
|
||||
<th></th>
|
||||
</tr>
|
||||
@ -21,13 +21,12 @@
|
||||
<tbody>
|
||||
<repeat group="{{@tickets}}" value="{{@ticket}}">
|
||||
<tr>
|
||||
<td>{{@ticket.id}}</td>
|
||||
<td><a href="/ticket/{{@ticket.id}}">{{@ticket.id}}</a></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>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user