2014-06-30 07:26:38 +02:00
|
|
|
@extends('layouts.default')
|
|
|
|
@section('content')
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-8 col-md-8 col-sm-12">
|
|
|
|
<h1>Firefly<br/>
|
2014-07-03 21:31:32 +02:00
|
|
|
<small>Migration</small>
|
2014-06-30 07:26:38 +02:00
|
|
|
</h1>
|
|
|
|
<ol>
|
2014-07-03 21:31:32 +02:00
|
|
|
<li>Upload <code>firefly-export-****-**-**.json</code></li>
|
|
|
|
<li>Wait..</li>
|
|
|
|
<li>Done!</li>
|
2014-06-30 07:26:38 +02:00
|
|
|
</ol>
|
2014-07-03 21:31:32 +02:00
|
|
|
|
2014-06-30 07:26:38 +02:00
|
|
|
<p>
|
2014-07-03 21:31:32 +02:00
|
|
|
|
2014-06-30 07:26:38 +02:00
|
|
|
</p>
|
2014-09-02 08:58:56 +02:00
|
|
|
{{Form::open(['files' => true,'url' => route('migrate.upload')])}}
|
2014-07-03 21:31:32 +02:00
|
|
|
<div class="form-group">
|
2014-09-02 08:58:56 +02:00
|
|
|
<label for="file">Export file</label>
|
|
|
|
<input name="file" type="file" id="exportFile">
|
2014-07-03 21:31:32 +02:00
|
|
|
<p class="help-block">Upload the export file here.</p>
|
|
|
|
</div>
|
|
|
|
<button type="submit" class="btn btn-info">Import</button>
|
|
|
|
{{Form::close()}}
|
2014-06-30 07:26:38 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@stop
|