Skip to content

Commit 76454c3

Browse files
authored
Merge pull request #528 from dbarzin/dev
Dev
2 parents e9aa346 + ac761dc commit 76454c3

File tree

10 files changed

+19
-8
lines changed

10 files changed

+19
-8
lines changed

resources/views/controls/edit.blade.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
@extends("layout")
22

3+
@section('title', $control->name)
4+
35
@section("content")
46
<div data-role="panel" data-title-caption='{{ trans("cruds.control.edit")}}' data-collapsible="false" data-title-icon="<span class='mif-paste'></span>">
57

resources/views/controls/history.blade.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
@extends("layout")
22

3+
@section('title', $control->name)
4+
35
@section("content")
46
<div class="row">
57
<div class="cell-lg-6 cell-md-12">

resources/views/controls/index.blade.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -224,10 +224,6 @@ function navigateWithAll(patch={}) {
224224
225225
// ==================================================================
226226
227-
// --- 1) assure-toi que la table génère bien la barre de recherche
228-
// (dans ton HTML de la table) :
229-
// data-search="true"
230-
231227
// --- 2) lit la valeur dans l'URL
232228
const params = new URLSearchParams(location.search);
233229
const searchValue = params.get('search') || '';

resources/views/controls/make.blade.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
@extends("layout")
22

3+
@section('title', $control->name)
4+
35
@section("styles")
46
<style>
57
.CodeMirror.CodeMirror-disabled {

resources/views/controls/plan.blade.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
@extends("layout")
22

3+
@section('title', $control->name)
4+
35
@section("content")
46
<div data-role="panel" data-title-caption="{{ trans('cruds.control.plan') }}" data-collapsible="false" data-title-icon="<span class='mif-paste'></span>">
57

resources/views/controls/show.blade.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
@extends("layout")
22

3+
@section('title', $control->name)
4+
35
@section("content")
46
<div data-role="panel" data-title-caption="{{ trans('cruds.control.title_singular') }}" data-collapsible="false" data-title-icon="<span class='mif-paste'></span>">
57

resources/views/layout.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
77
<meta http-equiv="X-UA-Compatible" content="ie=edge">
88
<meta name="metro:smooth_scroll" content="true">
9-
<title>Deming - ISMS Controls Made Easy</title>
9+
<title>Deming - @yield('title', 'ISMS Controls Made Easy')</title>
1010
@vite(['resources/css/app.css', 'resources/js/app.js'])
1111
@yield('styles')
1212
@if (!app()->environment('production'))
@@ -236,7 +236,7 @@
236236
<div data-role="appbar" class="bg-reserve-steppe border-bottom bd-default" data-expand-point="fs">
237237
<div class="app-bar-item-static d-none-fs d-flex-md">
238238
<div class="text-bold enlarge-2" id="content-title">
239-
@yield('title')
239+
@yield('none')
240240
</div>
241241
</div>
242242
<ul class="app-bar-menu ml-auto">

resources/views/measures/edit.blade.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
@extends("layout")
2-
@section("styles")
3-
@endsection
2+
3+
@section('title', $measure->name)
4+
45
@section("content")
56
<div data-role="panel" data-title-caption="{{ trans('cruds.measure.edit') }}" data-collapsible="false" data-title-icon="<span class='mif-books'></span>">
67

resources/views/measures/plan.blade.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
@extends("layout")
22

3+
@section('title', $measure->name)
4+
35
@section("content")
46
<div data-role="panel" data-title-caption="{{ trans('cruds.measure.plan') }}" data-collapsible="false" data-title-icon="<span class='mif-paste'></span>">
57

resources/views/measures/show.blade.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
@extends("layout")
22

3+
@section('title', $measure->name)
4+
35
@section("content")
46
<div data-role="panel" data-title-caption="{{ trans('cruds.measure.show') }}" data-collapsible="false" data-title-icon="<span class='mif-books'></span>">
57

0 commit comments

Comments
 (0)