mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 15:44:11 -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
70 lines
2.7 KiB
PHP
Executable file
70 lines
2.7 KiB
PHP
Executable file
@extends('layouts/default')
|
|
|
|
{{-- Page title --}}
|
|
@section('title')
|
|
{{ trans('admin/licenses/general.checkin') }}
|
|
@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="{{ route('licenses.checkin.save', $licenseSeat->id) }}" autocomplete="off">
|
|
{{csrf_field()}}
|
|
|
|
<div class="box box-default">
|
|
<div class="box-header with-border">
|
|
<h3 class="box-title"> {{ $licenseSeat->license->name }}</h3>
|
|
</div>
|
|
<div class="box-body">
|
|
|
|
<!-- license name -->
|
|
<div class="form-group">
|
|
<label class="col-sm-2 control-label">{{ trans('admin/hardware/form.name') }}</label>
|
|
<div class="col-md-6">
|
|
<p class="form-control-static">{{ $licenseSeat->license->name }}</p>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Serial -->
|
|
<div class="form-group">
|
|
<label class="col-sm-2 control-label">{{ trans('admin/hardware/form.serial') }}</label>
|
|
<div class="col-md-6">
|
|
<p class="form-control-static">
|
|
@can('viewKeys', $licenseSeat->license)
|
|
{{ $licenseSeat->license->serial }}
|
|
@else
|
|
------------
|
|
@endcan
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Note -->
|
|
<div class="form-group {{ $errors->has('note') ? 'error' : '' }}">
|
|
<label for="note" class="col-md-2 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', $licenseSeat->note) }}</textarea>
|
|
{!! $errors->first('note', '<span class="alert-msg"><i class="fa fa-times"></i> :message</span>') !!}
|
|
</div>
|
|
</div>
|
|
<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.checkin') }}</button>
|
|
</div>
|
|
</div> <!-- /.box-->
|
|
</form>
|
|
</div> <!-- /.col-md-7-->
|
|
</div>
|
|
|
|
|
|
@stop
|