This commit is contained in:
snipe 2016-06-13 12:07:01 -07:00
parent bfe4bc6ee5
commit 3ca81f4d73
5 changed files with 5 additions and 4 deletions

View file

@ -9,6 +9,7 @@ return array(
'date' => 'Purchase Date', 'date' => 'Purchase Date',
'depreciation' => 'Depreciation', 'depreciation' => 'Depreciation',
'expiration' => 'Expiration Date', 'expiration' => 'Expiration Date',
'license_key' => 'Product Key',
'maintained' => 'Maintained', 'maintained' => 'Maintained',
'name' => 'Software Name', 'name' => 'Software Name',
'no_depreciation' => 'Do Not Depreciate', 'no_depreciation' => 'Do Not Depreciate',

View file

@ -168,7 +168,7 @@
<thead> <thead>
<tr> <tr>
<th class="col-md-4"><span class="line"></span>{{ trans('general.name') }}</th> <th class="col-md-4"><span class="line"></span>{{ trans('general.name') }}</th>
<th class="col-md-4"><span class="line"></span>{{ trans('admin/licenses/form.serial') }}</th> <th class="col-md-4"><span class="line"></span>{{ trans('admin/licenses/form.license_key') }}</th>
<th class="col-md-1"><span class="line"></span>{{ trans('table.actions') }}</th> <th class="col-md-1"><span class="line"></span>{{ trans('table.actions') }}</th>
</tr> </tr>
</thead> </thead>

View file

@ -335,7 +335,7 @@
<thead> <thead>
<tr> <tr>
<th class="col-md-4">{{ trans('general.name') }}</th> <th class="col-md-4">{{ trans('general.name') }}</th>
<th class="col-md-4"><span class="line"></span>{{ trans('admin/licenses/form.serial') }}</th> <th class="col-md-4"><span class="line"></span>{{ trans('admin/licenses/form.license_key') }}</th>
<th class="col-md-1"><span class="line"></span>{{ trans('table.actions') }}</th> <th class="col-md-1"><span class="line"></span>{{ trans('table.actions') }}</th>
</tr> </tr>
</thead> </thead>

View file

@ -66,7 +66,7 @@
<!-- Serial --> <!-- Serial -->
<div class="form-group {{ $errors->has('serial') ? ' has-error' : '' }}"> <div class="form-group {{ $errors->has('serial') ? ' has-error' : '' }}">
<label for="serial" class="col-md-3 control-label">{{ trans('admin/licenses/form.serial') }} <label for="serial" class="col-md-3 control-label">{{ trans('admin/licenses/form.license_key') }}
<i class='fa fa-asterisk'></i></label> <i class='fa fa-asterisk'></i></label>
</label> </label>
<div class="col-md-7"> <div class="col-md-7">

View file

@ -118,7 +118,7 @@
@if (!is_null($license->serial)) @if (!is_null($license->serial))
<tr> <tr>
<td>{{ trans('admin/licenses/form.serial') }}</td> <td>{{ trans('admin/licenses/form.license_key') }}</td>
<td style="word-wrap: break-word;overflow-wrap: break-word;word-break: break-word;">{{ nl2br(e($license->serial)) }}</td> <td style="word-wrap: break-word;overflow-wrap: break-word;word-break: break-word;">{{ nl2br(e($license->serial)) }}</td>
</tr> </tr>
@endif @endif