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'])}}
|
{{ 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>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
@ -12,7 +12,7 @@
|
|||||||
<table class="table is-fullwidth is-bordered">
|
<table class="table is-fullwidth is-bordered">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<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>status</th><th>priority</th><th>created_at</th>
|
||||||
<th></th>
|
<th></th>
|
||||||
</tr>
|
</tr>
|
||||||
@ -21,13 +21,12 @@
|
|||||||
<tbody>
|
<tbody>
|
||||||
<repeat group="{{@tickets}}" value="{{@ticket}}">
|
<repeat group="{{@tickets}}" value="{{@ticket}}">
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{@ticket.id}}</td>
|
<td><a href="/ticket/{{@ticket.id}}">{{@ticket.id}}</a></td>
|
||||||
<td>{{@ticket.title}}</td>
|
<td>{{@ticket.title}}</td>
|
||||||
<td>{{@ticket.status}}</td>
|
<td>{{@ticket.status}}</td>
|
||||||
<td>{{@ticket.priority}}</td>
|
<td>{{@ticket.priority}}</td>
|
||||||
<td>{{@ticket.created_at}}</td>
|
<td>{{@ticket.created_at}}</td>
|
||||||
<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>
|
<a href="/ticket/{{@ticket.id}}/edit"><i class="fa fa-edit"></i></a>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user