Grammatical display changes
This commit is contained in:
parent
00e125c042
commit
ee78a3947b
3 changed files with 4 additions and 4 deletions
|
@ -55,7 +55,7 @@
|
|||
<input type="text" name="file" class="form-control" value="{{ old('file') }}" />
|
||||
<span class="input-group-addon">/index.js</span>
|
||||
</div>
|
||||
<p class="text-muted"><small>This should be the name of the folder on the daemon that contains all of the service logic.</small></p>
|
||||
<p class="text-muted"><small>This should be a unique alpha-numeric <code>(a-z)</code> name used to identify the service.</small></p>
|
||||
</div>
|
||||
<div class="col-md-6 form-group">
|
||||
<label class="control-label">Display Executable:</label>
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
<table class="table table-bordered table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Pack Name</th>
|
||||
<th>Version</th>
|
||||
<th>UUID</th>
|
||||
<th>Selectable</th>
|
||||
|
@ -47,7 +47,7 @@
|
|||
@foreach ($packs as $pack)
|
||||
<tr>
|
||||
<td><a href="{{ route('admin.services.packs.edit', $pack->id) }}">{{ $pack->name }}</a></td>
|
||||
<td>{{ $pack->version }}</td>
|
||||
<td><code>{{ $pack->version }}</code></td>
|
||||
<td><code>{{ $pack->uuid }}</code></td>
|
||||
<td>@if($pack->selectable)<span class="label label-success"><i class="fa fa-check"></i></span>@else<span class="label label-default"><i class="fa fa-times"></i></span>@endif</td>
|
||||
<td>@if($pack->visible)<span class="label label-success"><i class="fa fa-check"></i></span>@else<span class="label label-default"><i class="fa fa-times"></i></span>@endif</td>
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
<table class="table table-bordered table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Service Option</th>
|
||||
<th>Total Packs</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
|
Loading…
Reference in a new issue