mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-08-09 10:22:51 +03:00
Sorting: Renamed sort set to sort rule
Renamed based on feedback from Tim and Script on Discord. Also fixed flaky test
This commit is contained in:
24
resources/views/settings/sort-rules/create.blade.php
Normal file
24
resources/views/settings/sort-rules/create.blade.php
Normal file
@@ -0,0 +1,24 @@
|
||||
@extends('layouts.simple')
|
||||
|
||||
@section('body')
|
||||
|
||||
<div class="container small">
|
||||
|
||||
@include('settings.parts.navbar', ['selected' => 'settings'])
|
||||
|
||||
<div class="card content-wrap auto-height">
|
||||
<h1 class="list-heading">{{ trans('settings.sort_rule_create') }}</h1>
|
||||
|
||||
<form action="{{ url("/settings/sorting/rules") }}" method="POST">
|
||||
{{ csrf_field() }}
|
||||
@include('settings.sort-rules.parts.form', ['model' => null])
|
||||
|
||||
<div class="form-group text-right">
|
||||
<a href="{{ url("/settings/sorting") }}" class="button outline">{{ trans('common.cancel') }}</a>
|
||||
<button type="submit" class="button">{{ trans('common.save') }}</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@stop
|
Reference in New Issue
Block a user