mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
3744a68daf
* Added CSS for table toolbar * Use maintenances API for table listings * NIcer layout for allowed_columns in maintenances API * Fixed #5014 - bootstrap cookie issues * Fixed #5015 - bug when saving settings * Refactored datatable code to use data attributes * Updated dashboard with new table code * Added - Order by group user count * Updated groups to use new table attributes * New license listing table code * More bootstrap table implementations * More BS table refactoring * Improved bootstrap assigned assets * New bootstrap for reports * Misc BS fixes * FIxed small issue with asset history display * Removed multisort option * JS refactor
61 lines
1.5 KiB
PHP
Executable file
61 lines
1.5 KiB
PHP
Executable file
@extends('layouts/default')
|
|
|
|
{{-- Page title --}}
|
|
@section('title')
|
|
{{ trans('admin/licenses/general.software_licenses') }}
|
|
@parent
|
|
@stop
|
|
|
|
|
|
@section('header_right')
|
|
@can('create', \App\Models\License::class)
|
|
<a href="{{ route('licenses.create') }}" class="btn btn-primary pull-right">
|
|
{{ trans('general.create') }}
|
|
</a>
|
|
@endcan
|
|
@stop
|
|
|
|
{{-- Page content --}}
|
|
@section('content')
|
|
|
|
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div class="box">
|
|
<div class="box-body">
|
|
|
|
<table
|
|
data-columns="{{ \App\Presenters\LicensePresenter::dataTableLayout() }}"
|
|
data-cookie-id-table="licensesTable"
|
|
data-pagination="true"
|
|
data-search="true"
|
|
data-side-pagination="server"
|
|
data-show-columns="true"
|
|
data-show-export="true"
|
|
data-show-footer="true"
|
|
data-show-refresh="true"
|
|
data-sort-order="asc"
|
|
data-sort-name="name"
|
|
id="licensesTable"
|
|
class="table table-striped snipe-table"
|
|
data-url="{{ route('api.licenses.index') }}"
|
|
data-export-options='{
|
|
"fileName": "export-licenses-{{ date('Y-m-d') }}",
|
|
"ignoreColumn": ["actions","image","change","checkbox","checkincheckout","icon"]
|
|
}'>
|
|
</table>
|
|
|
|
</div><!-- /.box-body -->
|
|
|
|
<div class="box-footer clearfix">
|
|
</div>
|
|
</div><!-- /.box -->
|
|
</div>
|
|
</div>
|
|
@stop
|
|
|
|
@section('moar_scripts')
|
|
@include ('partials.bootstrap-table')
|
|
|
|
@stop
|