Better display of configuration button for services

This commit is contained in:
Dane Everitt 2017-01-12 13:38:59 -05:00
parent 6bd9663f59
commit 8323477d0c
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
2 changed files with 15 additions and 1 deletions

View file

@ -33,9 +33,10 @@
<table class="table table-bordered table-hover">
<thead>
<tr>
<th>Service Type</th>
<th class="col-md-3">Service Type</th>
<th>Description</th>
<th class="text-center">Servers</th>
<th></th>
</tr>
</thead>
<tbody>
@ -44,9 +45,11 @@
<td><a href="{{ route('admin.services.service', $service->id) }}">{{ $service->name }}</a></td>
<td>{!! $service->description !!}</td>
<td class="text-center">{{ $service->c_servers }}</td>
<td class="text-center align-middle"><a href="{{ route('admin.services.service.config', $service->id) }}"><button class="btn btn-xxs btn-primary"><i class="fa fa-wrench"></i> Configure</button></a></td>
</tr>
@endforeach
<tr>
<td></td>
<td></td>
<td></td>
<td class="text-center"><a href="{{ route('admin.services.new') }}"><i class="fa fa-plus"></i></a></td>