Remove duplicate status

This commit is contained in:
madd15
2015-03-13 12:56:09 +10:30
parent cb171bcac5
commit 35f3350ddf
+1 -12
View File
@@ -41,7 +41,6 @@
<th class="col-sm-1">@lang('admin/hardware/form.supplier')</th>
<th class="col-sm-1">@lang('admin/hardware/table.checkoutto')</th>
<th class="col-sm-1">@lang('admin/hardware/table.location')</th>
<th class="col-sm-1">@lang('general.status')</th>
</tr>
</thead>
<tbody>
@@ -103,16 +102,6 @@
{{{ $asset->defaultLoc->name }}}
@endif
</td>
<td>
@if (($asset->status_id == '0') && ($asset->assigned_to == '0'))
@lang('general.ready_to_deploy')
@elseif (($asset->status_id == '') && ($asset->assigned_to == '0'))
@lang('general.pending')
@elseif ($asset->assetstatus)
{{{ $asset->assetstatus->name }}}
@endif
</td>
</tr>
@endforeach
</tbody>
@@ -120,4 +109,4 @@
</div>
@stop
@stop