Layout changes for file upload

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2022-06-21 10:50:37 -07:00
parent d8d12d4590
commit 7f664a7971

View file

@ -2,189 +2,215 @@
{{-- Page title --}} {{-- Page title --}}
@section('title') @section('title')
{{ trans('admin/models/table.view') }} {{ $model->name }}
{{ $model->model_tag }} {{ ($model->model_number) ? '(#'.$model->model_number.')' : '' }}
@parent @parent
@stop @stop
@section('header_right') @section('header_right')
@can('update', \App\Models\AssetModel::class) @can('update', \App\Models\AssetModel::class)
<div class="btn-group pull-right"> <div class="btn-group pull-right">
<button class="btn btn-default dropdown-toggle" data-toggle="dropdown">{{ trans('button.actions') }} <button class="btn btn-default dropdown-toggle" data-toggle="dropdown">{{ trans('button.actions') }}
<span class="caret"></span> <span class="caret"></span>
</button> </button>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
@if ($model->deleted_at=='') @if ($model->deleted_at=='')
<li><a href="{{ route('models.edit', $model->id) }}">{{ trans('admin/models/table.edit') }}</a></li> <li><a href="{{ route('models.edit', $model->id) }}">{{ trans('admin/models/table.edit') }}</a></li>
<li><a href="{{ route('clone/model', $model->id) }}">{{ trans('admin/models/table.clone') }}</a></li> <li><a href="{{ route('clone/model', $model->id) }}">{{ trans('admin/models/table.clone') }}</a></li>
<li><a href="{{ route('hardware.create', ['model_id' => $model->id]) }}">{{ trans('admin/hardware/form.create') }}</a></li> <li><a href="{{ route('hardware.create', ['model_id' => $model->id]) }}">{{ trans('admin/hardware/form.create') }}</a></li>
@else @else
<li><a href="{{ route('restore/model', $model->id) }}">{{ trans('admin/models/general.restore') }}</a></li> <li><a href="{{ route('restore/model', $model->id) }}">{{ trans('admin/models/general.restore') }}</a></li>
@endif @endif
</ul> </ul>
</div> </div>
@endcan @endcan
@stop @stop
{{-- Page content --}} {{-- Page content --}}
@section('content') @section('content')
<div class="row"> <div class="row">
<div class="col-md-9"> <div class="col-md-9">
<div class="box box-default"> <div class="nav-tabs-custom">
@if ($model->id)
<div class="box-header with-border">
<div class="box-heading">
<h2 class="box-title"> {{ $model->name }}
{{ ($model->model_number) ? '(#'.$model->model_number.')' : '' }}
</h2>
</div>
</div><!-- /.box-header -->
@endif
<div class="box-body">
@include('partials.asset-bulk-actions') <ul class="nav nav-tabs">
<li class="active">
<a href="#assets" data-toggle="tab">
<span class="hidden-lg hidden-md">
<i class="fas fa-barcode fa-2x"></i>
</span>
<span class="hidden-xs hidden-sm">
{{ trans('general.assets') }}
{!! (($model->assets) && ($model->assets->count() > 0 )) ? '<badge class="badge badge-secondary">'.number_format($model->assets->count()).'</badge>' : '' !!}
</span>
</a>
</li>
<li>
<a href="#uploads" data-toggle="tab">
<span class="hidden-lg hidden-md">
<i class="fas fa-barcode fa-2x"></i>
</span>
<span class="hidden-xs hidden-sm">
{{ trans('general.files') }}
</span>
</a>
</li>
<table </ul>
data-columns="{{ \App\Presenters\AssetPresenter::dataTableLayout() }}"
data-cookie-id-table="assetListingTable" <div class="tab-content">
data-pagination="true" <div class="tab-pane fade in active" id="assets">
data-id-table="assetListingTable"
data-search="true" @include('partials.asset-bulk-actions')
data-side-pagination="server"
data-show-columns="true" <table
data-show-fullscreen="true" data-columns="{{ \App\Presenters\AssetPresenter::dataTableLayout() }}"
data-toolbar="#assetsBulkEditToolbar" data-cookie-id-table="assetListingTable"
data-bulk-button-id="#bulkAssetEditButton" data-pagination="true"
data-bulk-form-id="#assetsBulkForm" data-id-table="assetListingTable"
data-click-to-select="true" data-search="true"
data-show-export="true" data-side-pagination="server"
data-show-refresh="true" data-show-columns="true"
data-sort-order="asc" data-show-fullscreen="true"
id="assetListingTable" data-toolbar="#assetsBulkEditToolbar"
data-url="{{ route('api.assets.index',['model_id'=> $model->id]) }}" data-bulk-button-id="#bulkAssetEditButton"
class="table table-striped snipe-table" data-bulk-form-id="#assetsBulkForm"
data-export-options='{ data-click-to-select="true"
data-show-export="true"
data-show-refresh="true"
data-sort-order="asc"
id="assetListingTable"
data-url="{{ route('api.assets.index',['model_id'=> $model->id]) }}"
class="table table-striped snipe-table"
data-export-options='{
"fileName": "export-models-{{ str_slug($model->name) }}-assets-{{ date('Y-m-d') }}", "fileName": "export-models-{{ str_slug($model->name) }}-assets-{{ date('Y-m-d') }}",
"ignoreColumn": ["actions","image","change","checkbox","checkincheckout","icon"] "ignoreColumn": ["actions","image","change","checkbox","checkincheckout","icon"]
}'> }'>
</table> </table>
{{ Form::close() }} {{ Form::close() }}
</div>
</div> <!-- /.box-body--> </div> <!-- /.tab-pane assets -->
</div> <!-- /.box-default-->
</div> <!-- /.col-md-9-->
<!-- side address column --> <div class="tab-pane fade" id="uploads">
<div class="col-md-3">
<div class="box box-default">
<div class="box-header with-border">
<div class="box-heading">
<h2 class="box-title"> {{ trans('general.moreinfo') }}:</h2>
</div>
</div><!-- /.box-header -->
<div class="box-body">
@if ($model->image) kljhglfh
<img src="{{ Storage::disk('public')->url(app('models_upload_path').e($model->image)) }}" class="img-responsive"></li>
@endif </div>
<ul class="list-unstyled" style="line-height: 25px;"> </div> <!-- /.tab-content -->
@if ($model->manufacturer) </div> <!-- /.nav-tabs-custom -->
<li> </div><!-- /. col-md-12 -->
{{ trans('general.manufacturer') }}: <div class="col-md-3">
@can('view', \App\Models\Manufacturer::class) <div class="box box-default">
<a href="{{ route('manufacturers.show', $model->manufacturer->id) }}"> <div class="box-header with-border">
{{ $model->manufacturer->name }} <div class="box-heading">
</a> <h2 class="box-title"> {{ trans('general.moreinfo') }}:</h2>
@else </div>
{{ $model->manufacturer->name }} </div><!-- /.box-header -->
@endcan <div class="box-body">
</li>
@if ($model->manufacturer->url) @if ($model->image)
<li> <img src="{{ Storage::disk('public')->url(app('models_upload_path').e($model->image)) }}" class="img-responsive"></li>
<i class="fas fa-globe-americas"></i> <a href="{{ $model->manufacturer->url }}">{{ $model->manufacturer->url }}</a>
</li>
@endif
@if ($model->manufacturer->support_url)
<li>
<i class="far fa-life-ring"></i> <a href="{{ $model->manufacturer->support_url }}">{{ $model->manufacturer->support_url }}</a>
</li>
@endif
@if ($model->manufacturer->support_phone)
<li>
<i class="fas fa-phone"></i>
<a href="tel:{{ $model->manufacturer->support_phone }}">{{ $model->manufacturer->support_phone }}</a>
</li>
@endif
@if ($model->manufacturer->support_email)
<li>
<i class="far fa-envelope"></i> <a href="mailto:{{ $model->manufacturer->support_email }}">{{ $model->manufacturer->support_email }}</a>
</li>
@endif
@endif @endif
@if ($model->model_number)
<li>
{{ trans('general.model_no') }}:
{{ $model->model_number }}
</li>
@endif
@if ($model->depreciation)
<li>
{{ trans('general.depreciation') }}:
{{ $model->depreciation->name }} ({{ $model->depreciation->months.' '.trans('general.months')}})
</li>
@endif
@if ($model->eol) <ul class="list-unstyled" style="line-height: 25px;">
<li>{{ trans('general.eol') }}: @if ($model->manufacturer)
{{ $model->eol .' '. trans('general.months') }} <li>
</li> {{ trans('general.manufacturer') }}:
@endif @can('view', \App\Models\Manufacturer::class)
<a href="{{ route('manufacturers.show', $model->manufacturer->id) }}">
{{ $model->manufacturer->name }}
</a>
@else
{{ $model->manufacturer->name }}
@endcan
</li>
@if ($model->fieldset) @if ($model->manufacturer->url)
<li>{{ trans('admin/models/general.fieldset') }}: <li>
<a href="{{ route('fieldsets.show', $model->fieldset->id) }}">{{ $model->fieldset->name }}</a> <i class="fas fa-globe-americas"></i> <a href="{{ $model->manufacturer->url }}">{{ $model->manufacturer->url }}</a>
</li> </li>
@endif @endif
@if ($model->notes) @if ($model->manufacturer->support_url)
<li> <li>
{{ trans('general.notes') }}: <i class="far fa-life-ring"></i> <a href="{{ $model->manufacturer->support_url }}">{{ $model->manufacturer->support_url }}</a>
{{ $model->notes }} </li>
</li> @endif
@endif
@if ($model->manufacturer->support_phone)
<li>
<i class="fas fa-phone"></i>
<a href="tel:{{ $model->manufacturer->support_phone }}">{{ $model->manufacturer->support_phone }}</a>
</li>
@endif
@if ($model->manufacturer->support_email)
<li>
<i class="far fa-envelope"></i> <a href="mailto:{{ $model->manufacturer->support_email }}">{{ $model->manufacturer->support_email }}</a>
</li>
@endif
@endif
@if ($model->model_number)
<li>
{{ trans('general.model_no') }}:
{{ $model->model_number }}
</li>
@endif
@if ($model->depreciation)
<li>
{{ trans('general.depreciation') }}:
{{ $model->depreciation->name }} ({{ $model->depreciation->months.' '.trans('general.months')}})
</li>
@endif
@if ($model->eol)
<li>{{ trans('general.eol') }}:
{{ $model->eol .' '. trans('general.months') }}
</li>
@endif
@if ($model->fieldset)
<li>{{ trans('admin/models/general.fieldset') }}:
<a href="{{ route('fieldsets.show', $model->fieldset->id) }}">{{ $model->fieldset->name }}</a>
</li>
@endif
@if ($model->notes)
<li>
{{ trans('general.notes') }}:
{{ $model->notes }}
</li>
@endif
@if ($model->deleted_at!='') @if ($model->deleted_at!='')
<li><br /><a href="{{ route('restore/model', $model->id) }}" class="btn-flat large info ">{{ trans('admin/models/general.restore') }}</a></li> <li><br /><a href="{{ route('restore/model', $model->id) }}" class="btn-flat large info ">{{ trans('admin/models/general.restore') }}</a></li>
@endif @endif
</ul> </ul>
@if ($model->note) @if ($model->note)
Notes: Notes:
<p> <p>
{!! $model->present()->note() !!} {!! $model->present()->note() !!}
</p> </p>
@endif @endif
</div> </div>
</div> </div>
</div> </div> <!-- /.row -->
</div>
</div>
@stop @stop
@section('moar_scripts') @section('moar_scripts')
@include ('partials.bootstrap-table') @include ('partials.bootstrap-table', ['exportFile' => 'manufacturer' . $model->name . '-export', 'search' => false])
@stop @stop