mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-13 17:14:10 -08:00
d016076806
* Fixed #6956 - Added additional gates show showing/hiding license keys * Modified gate to allow user to see licenses if they can create or edit the license as well
110 lines
4.8 KiB
PHP
Executable file
110 lines
4.8 KiB
PHP
Executable file
@extends('layouts/default')
|
|
|
|
{{-- Page title --}}
|
|
@section('title')
|
|
{{ trans('admin/licenses/general.checkout') }}
|
|
@parent
|
|
@stop
|
|
|
|
@section('header_right')
|
|
<a href="{{ URL::previous() }}" class="btn btn-primary pull-right">
|
|
{{ trans('general.back') }}</a>
|
|
@stop
|
|
|
|
{{-- Page content --}}
|
|
@section('content')
|
|
<div class="row">
|
|
<!-- left column -->
|
|
<div class="col-md-7">
|
|
<form class="form-horizontal" method="post" action="" autocomplete="off">
|
|
{{csrf_field()}}
|
|
|
|
<div class="box box-default">
|
|
<div class="box-header with-border">
|
|
<h3 class="box-title"> {{ $license->name }}</h3>
|
|
</div>
|
|
<div class="box-body">
|
|
|
|
<!-- Asset name -->
|
|
<div class="form-group">
|
|
<label class="col-sm-3 control-label">{{ trans('admin/hardware/form.name') }}</label>
|
|
<div class="col-md-6">
|
|
<p class="form-control-static">{{ $license->name }}</p>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Serial -->
|
|
<div class="form-group">
|
|
<label class="col-sm-3 control-label">{{ trans('admin/hardware/form.serial') }}</label>
|
|
<div class="col-md-9">
|
|
<p class="form-control-static" style="word-wrap: break-word;">
|
|
@can('viewKeys', $license)
|
|
{{ $license->serial }}
|
|
@else
|
|
------------
|
|
@endcan
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
@include ('partials.forms.checkout-selector', ['user_select' => 'true','asset_select' => 'true', 'location_select' => 'false'])
|
|
|
|
@include ('partials.forms.edit.user-select', ['translated_name' => trans('general.user'), 'fieldname' => 'assigned_to', 'required'=>'true'])
|
|
|
|
@include ('partials.forms.edit.asset-select', ['translated_name' => trans('admin/licenses/form.asset'), 'fieldname' => 'asset_id', 'style' => 'display:none;'])
|
|
|
|
|
|
<!-- Note -->
|
|
<div class="form-group {{ $errors->has('note') ? 'error' : '' }}">
|
|
<label for="note" class="col-md-3 control-label">{{ trans('admin/hardware/form.notes') }}</label>
|
|
<div class="col-md-7">
|
|
<textarea class="col-md-6 form-control" id="note" name="note">{{ Input::old('note') }}</textarea>
|
|
{!! $errors->first('note', '<span class="alert-msg"><i class="fa fa-times"></i> :message</span>') !!}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
@if ($license->requireAcceptance() || $license->getEula() || ($snipeSettings->slack_endpoint!=''))
|
|
<div class="form-group notification-callout">
|
|
<div class="col-md-8 col-md-offset-3">
|
|
<div class="callout callout-info">
|
|
|
|
@if ($license->requireAcceptance())
|
|
<i class="fa fa-envelope"></i>
|
|
{{ trans('admin/categories/general.required_acceptance') }}
|
|
<br>
|
|
@endif
|
|
|
|
@if ($license->getEula())
|
|
<i class="fa fa-envelope"></i>
|
|
{{ trans('admin/categories/general.required_eula') }}
|
|
<br>
|
|
@endif
|
|
|
|
@if (($license->category) && ($license->category->checkin_email))
|
|
<i class="fa fa-envelope"></i>
|
|
{{ trans('admin/categories/general.checkin_email_notification') }}
|
|
<br>
|
|
@endif
|
|
|
|
@if ($snipeSettings->slack_endpoint!='')
|
|
<i class="fa fa-slack"></i>
|
|
A slack message will be sent
|
|
@endif
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endif
|
|
|
|
<div class="box-footer">
|
|
<a class="btn btn-link" href="{{ route('licenses.index') }}">{{ trans('button.cancel') }}</a>
|
|
<button type="submit" class="btn btn-success pull-right"><i class="fa fa-check icon-white"></i> {{ trans('general.checkout') }}</button>
|
|
</div>
|
|
</div> <!-- /.box-->
|
|
</form>
|
|
</div> <!-- /.col-md-7-->
|
|
</div>
|
|
|
|
@stop
|