mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-07-28 17:02:04 +03:00
Add default_template as Book setting
This commit is contained in:
10
resources/views/entities/template-manager.blade.php
Normal file
10
resources/views/entities/template-manager.blade.php
Normal file
@ -0,0 +1,10 @@
|
||||
<p class="text-muted small">
|
||||
{!! nl2br(e(trans('entities.default_template_explain'))) !!}
|
||||
</p>
|
||||
|
||||
<select name="default_template" id="default_template">
|
||||
<option value="">---</option>
|
||||
@foreach ($templates as $template)
|
||||
<option @if(isset($entity) && $entity->default_template === $template->id) selected @endif value="{{ $template->id }}">{{ $template->name }}</option>
|
||||
@endforeach
|
||||
</select>
|
Reference in New Issue
Block a user