snipe-it/resources/views/custom_fields/index.blade.php

196 lines
8.1 KiB
PHP
Raw Normal View History

2016-03-25 01:18:05 -07:00
@extends('layouts/default')
{{-- Page title --}}
@section('title')
Manage {{ trans('admin/custom_fields/general.custom_fields') }}
@parent
@stop
@section('content')
@can('view', \App\Models\CustomFieldset::class)
2016-03-25 01:18:05 -07:00
<div class="row">
<div class="col-md-9">
<div class="box box-default">
<div class="box-header with-border">
2020-03-31 23:36:56 -07:00
<h2 class="box-title">{{ trans('admin/custom_fields/general.fieldsets') }}</h2>
<div class="box-tools pull-right">
@can('create', \App\Models\CustomFieldset::class)
<a href="{{ route('fieldsets.create') }}" class="btn btn-sm btn-primary" data-toggle="tooltip" title="Create a new fieldset">{{ trans('admin/custom_fields/general.create_fieldset') }}</a>
@endcan
</div>
</div><!-- /.box-header -->
<div class="box-body">
<table
data-cookie-id-table="customFieldsetsTable"
data-id-table="customFieldsetsTable"
data-search="true"
data-side-pagination="client"
data-show-columns="true"
data-show-export="true"
data-show-refresh="true"
data-sort-order="asc"
data-sort-name="name"
id="customFieldsTable"
class="table table-striped snipe-table"
data-export-options='{
"fileName": "export-fieldsets-{{ date('Y-m-d') }}",
"ignoreColumn": ["actions","image","change","checkbox","checkincheckout","icon"]
}'>
<thead>
<tr>
<th>{{ trans('general.name') }}</th>
<th>{{ trans('admin/custom_fields/general.qty_fields') }}</th>
<th>{{ trans('admin/custom_fields/general.used_by_models') }}</th>
2020-03-28 02:52:14 -07:00
<th>Actions</th>
</tr>
</thead>
@if(isset($custom_fieldsets))
<tbody>
@foreach($custom_fieldsets AS $fieldset)
<tr>
<td>
{{ link_to_route("fieldsets.show",$fieldset->name,['fieldset' => $fieldset->id]) }}
</td>
<td>
{{ $fieldset->fields->count() }}
</td>
<td>
@foreach($fieldset->models as $model)
<a href="{{ route('models.show', $model->id) }}" class="label label-default">{{ $model->name }}{{ ($model->model_number) ? ' ('.$model->model_number.')' : '' }}</a>
@endforeach
</td>
<td>
@can('delete', $fieldset)
{{ Form::open(['route' => array('fieldsets.destroy', $fieldset->id), 'method' => 'delete']) }}
@if($fieldset->models->count() > 0)
<button type="submit" class="btn btn-danger btn-sm disabled" disabled><i class="fa fa-trash"></i></button>
@else
<button type="submit" class="btn btn-danger btn-sm"><i class="fa fa-trash"></i></button>
@endif
{{ Form::close() }}
@endcan
</td>
</tr>
@endforeach
</tbody>
@endif
</table>
2016-03-25 01:18:05 -07:00
</div><!-- /.box-body -->
</div><!-- /.box.box-default -->
2016-03-25 01:18:05 -07:00
</div> <!-- .col-md-9-->
<!-- side address column -->
<div class="col-md-3">
2020-03-28 03:43:24 -07:00
<h2>{{ trans('admin/custom_fields/general.about_fieldsets_title') }}</h2>
<p>{{ trans('admin/custom_fields/general.about_fieldsets_text') }} </p>
2016-03-25 01:18:05 -07:00
</div>
</div> <!-- .row-->
@endcan
@can('view', \App\Models\CustomField::class)
<div class="row">
Notification improvements (#5254) * Added “show fields in email” to custom fields * Added “show images in email” to settings * Added nicer HTML emails * Break notifications out into their own, instead of trying to mash them all together * Remove old notification for accessory checkout * Janky fix for #5076 - “The asset you have attempted to accept was not checked out to you” * Add method for image url for accessories * Added accessory checkout email blade * Make accessory email notification on checkout screen consistent with assets * Added native consumables notifications * Fixes for asset notification * Updated notification blades with correct-er fields * Updated notifications * License checkin notification - does not work yet Need to figure out whether the license seat is assigned to a person or an asset before we can pass the target * Added alternate “cc” email for admins * Only try to trigger notifications if the target is a user * Fix tests * Fixed consumable URL * Removed unused notification * Pass target type in params * Show slack status * Pass additional parameters There is a logic bug in this :( Will send to slack twice, since the admin CC and the user are both using the same notification. Fuckity fuck fuck fuck. * Pass a variable to the notification to supress the duplicate slack message * Slack is broken :( Trying to fix Will try a git bisect * Put preview back into checkout * Pulled old archaic mail * Removed debugging * Fixed wrong email title * Fixed slack endpoint not firing * Poobot, we hardly knew ye. * Removed old, manual mail from API * Typo :-/ * Code cleanup * Use defined formatted date in JSON * Use static properties for checkin/checkout notifiers for cleaner code * Removed debugging * Use date formatter * Fixed target_type * Fixed language in consumable email
2018-03-25 13:46:57 -07:00
<div class="col-md-12">
<div class="box box-default">
<div class="box-header with-border">
2020-03-31 23:36:56 -07:00
<h2 class="box-title">{{ trans('admin/custom_fields/general.custom_fields') }}</h2>
<div class="box-tools pull-right">
@can('create', \App\Models\CustomField::class)
<a href="{{ route('fields.create') }}" class="btn btn-sm btn-primary" data-toggle="tooltip" title="Create a new custom field">{{ trans('admin/custom_fields/general.create_field') }}</a>
@endcan
</div>
</div><!-- /.box-header -->
<div class="box-body">
<div class="table-responsive">
<table
data-cookie-id-table="customFieldsTable"
data-id-table="customFieldsTable"
data-search="true"
data-side-pagination="client"
data-show-columns="true"
data-show-export="true"
data-show-refresh="true"
data-sort-order="asc"
data-sort-name="name"
id="customFieldsTable"
class="table table-striped snipe-table"
data-export-options='{
"fileName": "export-fields-{{ date('Y-m-d') }}",
"ignoreColumn": ["actions","image","change","checkbox","checkincheckout","icon"]
}'>
<thead>
<tr>
<th data-searchable="true">{{ trans('general.name') }}</th>
<th data-searchable="true">Help Text</th>
<th data-searchable="true">Email</th>
<th data-visible="false">DB Field</th>
<th data-searchable="true">{{ trans('admin/custom_fields/general.field_format') }}</th>
<th data-searchable="true">{{ trans('admin/custom_fields/general.field_element_short') }}</th>
<th data-searchable="true">{{ trans('admin/custom_fields/general.fieldsets') }}</th>
2020-03-28 02:52:14 -07:00
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach($custom_fields as $field)
<tr>
<td>{{ $field->name }}</td>
<td>{{ $field->help_text }}</td>
<td>{!! ($field->show_in_email=='1') ? '<i class="fa fa-check text-success" aria-hidden="true"><span class="sr-only">'.trans('general.yes').'</span></i>' : '<i class="fa fa-times text-danger" aria-hidden="true"><span class="sr-only">'.trans('general.no').'</span></i>' !!}</td>
<td>
<code>{{ $field->convertUnicodeDbSlug() }}</code>
@if ($field->convertUnicodeDbSlug()!=$field->db_column)
<br><i class="fa fa-warning text-danger"></i>WARNING. This field is in the custom fields table as <code>{{ $field->db_column }}</code> but should be <code>{{ $field->convertUnicodeDbSlug() }}</code>.
@endif
</td>
<td>{{ $field->format }}</td>
<td>{{ $field->element }}</td>
<td>
@foreach($field->fieldset as $fieldset)
<a href="{{ route('fieldsets.show', $fieldset->id) }}" class="label label-default">{{ $fieldset->name }}</a>
@endforeach
</td>
<td>
<nobr>
@can('update', $field)
2020-03-28 02:41:27 -07:00
<a href="{{ route('fields.edit', $field->id) }}" class="btn btn-warning btn-sm">
<i class="fa fa-pencil" aria-hidden="true"></i>
<span class="sr-only">Edit</span>
</a>
@endcan
@can('delete', $field)
{{ Form::open(array('route' => array('fields.destroy', $field->id), 'method' => 'delete', 'style' => 'display:inline-block')) }}
@if($field->fieldset->count()>0)
2020-03-28 02:41:27 -07:00
<button type="submit" class="btn btn-danger btn-sm disabled" disabled>
<i class="fa fa-trash" aria-hidden="true"></i>
<span class="sr-only">Delete</span></button>
@else
2020-03-28 02:41:27 -07:00
<button type="submit" class="btn btn-danger btn-sm">
<i class="fa fa-trash" aria-hidden="true"></i>
<span class="sr-only">Delete</span>
</button>
@endif
{{ Form::close() }}
@endcan
</nobr>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div><!-- /.box-body -->
</div><!-- /.box -->
</div> <!-- /.col-md-9-->
2016-03-25 01:18:05 -07:00
</div>
@endcan
2016-03-25 01:18:05 -07:00
@stop
@section('moar_scripts')
@include ('partials.bootstrap-table')
@stop