mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
fd450e2773
* Fix maintenances create button, and post to the proper route in maintences edit * Fix consumable tab when active. * Fix an html formatting error that resulted in us not closing a form. This would cause the checkin page to try to submit a delete request (related to the modal form) rather than the desired checkin request. Also fix formatting in this file. * Use log mail driver for testing, should fix the functional issue. Disable acceptance tests on travis for now. * Fix Category edit page. * EOL Can be null.
122 lines
6 KiB
PHP
Executable file
122 lines
6 KiB
PHP
Executable file
@extends('layouts/default')
|
|
|
|
{{-- Page title --}}
|
|
@section('title')
|
|
{{ trans('admin/hardware/general.checkin') }}
|
|
@parent
|
|
@stop
|
|
|
|
{{-- Page content --}}
|
|
@section('content')
|
|
|
|
|
|
<style>
|
|
|
|
.input-group {
|
|
padding-left: 0px !important;
|
|
}
|
|
</style>
|
|
|
|
|
|
<div class="row">
|
|
|
|
<!-- left column -->
|
|
<div class="col-md-9">
|
|
|
|
<div class="box box-default">
|
|
<div class="box-header with-border">
|
|
<h3 class="box-title">{{ trans('admin/hardware/form.tag') }} {{ $asset->asset_tag }}</h3>
|
|
</div><!-- /.box-header -->
|
|
|
|
<div class="box-body">
|
|
<div class="col-md-12">
|
|
|
|
@if ($backto=='user')
|
|
<form class="form-horizontal" method="post"
|
|
action="{{ route('checkin/hardware', array('assetId'=> $asset->id, 'backto'=>'user')) }}"
|
|
autocomplete="off">
|
|
@else
|
|
<form class="form-horizontal" method="post"
|
|
action="{{ route('checkin/hardware', $asset->id) }}" autocomplete="off">
|
|
@endif
|
|
<!-- CSRF Token -->
|
|
<input type="hidden" name="_token" value="{{ csrf_token() }}"/>
|
|
|
|
@if ($asset->model->name)
|
|
<!-- Asset name -->
|
|
<div class="form-group">
|
|
|
|
{{ Form::label('name', trans('admin/hardware/form.model'), array('class' => 'col-md-3 control-label')) }}
|
|
|
|
<div class="col-md-8">
|
|
<p class="form-control-static">{{ $asset->model->name }}</p>
|
|
</div>
|
|
</div>
|
|
@endif
|
|
|
|
<!-- Asset Name -->
|
|
<div class="form-group {{ $errors->has('name') ? 'error' : '' }}">
|
|
{{ Form::label('name', trans('admin/hardware/form.name'), array('class' => 'col-md-3 control-label')) }}
|
|
<div class="col-md-8">
|
|
<input class="form-control" type="text" name="name" id="name"
|
|
value="{{ Input::old('name', $asset->name) }}"/>
|
|
{!! $errors->first('name', '<span class="alert-msg"><i class="fa fa-times"></i> :message</span>') !!}
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Status -->
|
|
<div class="form-group {{ $errors->has('status_id') ? 'error' : '' }}">
|
|
|
|
{{ Form::label('name', trans('admin/hardware/form.status'), array('class' => 'col-md-3 control-label')) }}
|
|
|
|
<div class="col-md-7 required">
|
|
{{ Form::select('status_id', $statusLabel_list, '', array('class'=>'select2', 'style'=>'width:100%','id' =>'modal-statuslabel_types')) }}
|
|
{!! $errors->first('status_id', '<span class="alert-msg"><i class="fa fa-times"></i> :message</span>') !!}
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Checkout/Checkin Date -->
|
|
<div class="form-group {{ $errors->has('checkin_at') ? 'error' : '' }}">
|
|
|
|
{{ Form::label('name', trans('admin/hardware/form.checkin_date'), array('class' => 'col-md-3 control-label')) }}
|
|
|
|
<div class="col-md-8">
|
|
<div class="col-md-4 input-group required">
|
|
<input type="date" class="datepicker form-control"
|
|
data-date-format="yyyy-mm-dd" placeholder="Checkin Date"
|
|
name="checkin_at" id="checkin_at"
|
|
value="{{ Input::old('checkin_at', date('Y-m-d')) }}">
|
|
<span class="input-group-addon"><i
|
|
class="fa fa-calendar"></i></span>
|
|
</div>
|
|
{!! $errors->first('checkin_at', '<span class="alert-msg"><i class="fa fa-times"></i> :message</span>') !!}
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Note -->
|
|
<div class="form-group {{ $errors->has('note') ? 'error' : '' }}">
|
|
|
|
{{ Form::label('note', trans('admin/hardware/form.notes'), array('class' => 'col-md-3 control-label')) }}
|
|
|
|
<div class="col-md-8">
|
|
<textarea class="col-md-6 form-control" id="note"
|
|
name="note">{{ Input::old('note', $asset->note) }}</textarea>
|
|
{!! $errors->first('note', '<span class="alert-msg"><i class="fa fa-times"></i> :message</span>') !!}
|
|
</div>
|
|
</div>
|
|
<button type="submit" class="btn btn-success pull-right"><i
|
|
class="fa fa-check icon-white"></i> {{ trans('general.checkin') }}</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<div class="box-footer">
|
|
<a class="btn btn-link" href="{{ URL::previous() }}"> {{ trans('button.cancel') }}</a>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
@stop
|