Fixes #4267 - email notifications showing model name as number

This commit is contained in:
snipe 2017-10-20 18:58:11 -07:00
parent f7e23cf7c8
commit fd210c6439
2 changed files with 6 additions and 6 deletions

View file

@ -38,7 +38,7 @@
@if (isset($model_name))
<tr>
<td>
{{ trans('general.model_no') }}:
{{ trans('general.asset_model') }}:
</td>
<td>
<strong>{{ $model_name }}</strong>
@ -48,7 +48,7 @@
@if (isset($model_number))
<tr>
<td>
{{ trans('general.asset_model') }}:
{{ trans('general.model_no') }}:
</td>
<td>
<strong>{{ $model_number }}</strong>

View file

@ -35,23 +35,23 @@
</td>
</tr>
@endif
@if (isset($model_name))
@if (isset($model_number))
<tr>
<td style="background-color:#ccc">
{{ trans('general.model_no') }}:
</td>
<td>
<strong>{{ $model_name }}</strong>
<strong>{{ $model_number }}</strong>
</td>
</tr>
@endif
@if (isset($model_number))
@if (isset($model_name))
<tr>
<td style="background-color:#ccc">
{{ trans('general.asset_model') }}:
</td>
<td>
<strong>{{ $model_number }}</strong>
<strong>{{ $model_name }}</strong>
</td>
</tr>
@endif