Fixed double div in current purchase value
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
224d0b2fd2
commit
f206d4ed4e
1 changed files with 2 additions and 3 deletions
|
@ -449,7 +449,7 @@
|
||||||
@if (($field->format=='URL') && ($asset->{$field->db_column_name()}!=''))
|
@if (($field->format=='URL') && ($asset->{$field->db_column_name()}!=''))
|
||||||
<a href="{{ $asset->{$field->db_column_name()} }}" target="_new">{{ $asset->{$field->db_column_name()} }}</a>
|
<a href="{{ $asset->{$field->db_column_name()} }}" target="_new">{{ $asset->{$field->db_column_name()} }}</a>
|
||||||
@else
|
@else
|
||||||
{!! nl2br(e($asset->{$field->db_column_name()})) !!}
|
{!! nl2br(e($asset->{$field->db_column_name()})) !!}
|
||||||
@endif
|
@endif
|
||||||
@endif
|
@endif
|
||||||
</div>
|
</div>
|
||||||
|
@ -499,7 +499,6 @@
|
||||||
</strong>
|
</strong>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-6">
|
<div class="col-md-6">
|
||||||
<div class="col-md-6" style="margin-left:-15px;">
|
|
||||||
@if (($asset->id) && ($asset->location))
|
@if (($asset->id) && ($asset->location))
|
||||||
{{ $asset->location->currency }}
|
{{ $asset->location->currency }}
|
||||||
@elseif (($asset->id) && ($asset->location))
|
@elseif (($asset->id) && ($asset->location))
|
||||||
|
@ -509,7 +508,7 @@
|
||||||
@endif
|
@endif
|
||||||
{{ Helper::formatCurrencyOutput($asset->getDepreciatedValue() )}}
|
{{ Helper::formatCurrencyOutput($asset->getDepreciatedValue() )}}
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@endif
|
@endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue