mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
43d9d2eba7
Allows BookStack to be installed at a non-root location on a domain. Closes #40.
34 lines
1.3 KiB
PHP
34 lines
1.3 KiB
PHP
@extends('base')
|
|
|
|
@section('content')
|
|
|
|
<div class="faded-small toolbar">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-sm-12 faded">
|
|
<div class="breadcrumbs">
|
|
<a href="{{ $book->getUrl() }}" class="text-book text-button"><i class="zmdi zmdi-book"></i>{{ $book->getShortName() }}</a>
|
|
<span class="sep">»</span>
|
|
<a href="{{ $chapter->getUrl() }}" class="text-chapter text-button"><i class="zmdi zmdi-collection-bookmark"></i>{{ $chapter->getShortName() }}</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="container">
|
|
<h1>Move Chapter <small class="subheader">{{$chapter->name}}</small></h1>
|
|
|
|
<form action="{{ $chapter->getUrl('/move') }}" method="POST">
|
|
{!! csrf_field() !!}
|
|
<input type="hidden" name="_method" value="PUT">
|
|
|
|
@include('partials/entity-selector', ['name' => 'entity_selection', 'selectorSize' => 'large', 'entityTypes' => 'book'])
|
|
|
|
<a href="{{ $chapter->getUrl() }}" class="button muted">Cancel</a>
|
|
<button type="submit" class="button pos">Move Chapter</button>
|
|
</form>
|
|
</div>
|
|
|
|
@stop
|