1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-10-27 20:32:28 +01:00

Grammatical display changes

This commit is contained in:
Dane Everitt 2016-11-18 18:34:45 -05:00
parent 00e125c042
commit ee78a3947b
No known key found for this signature in database
GPG Key ID: EEA66103B3D71F53
3 changed files with 4 additions and 4 deletions

View File

@ -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>

View File

@ -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>

View File

@ -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>