Print status after printing single note.

This commit is contained in:
kplaczek
2018-08-16 22:07:59 +02:00
parent 41b7d5778d
commit 081aa0f7a4
2 changed files with 18 additions and 6 deletions

View File

@@ -1,11 +1,22 @@
@extends('layouts.base')
@section('content')
<style>
body .column .ui.form textarea:not([rows]) {max-height: inherit; height: 20em}
</style>
<style>
body .column .ui.form textarea:not([rows]) {
max-height: inherit;
height: 20em
}
</style>
<div class="ui container">
@if(Session::has('print_status'))
<div class="ui info message">
<div class="header">
{{ Session::get('print_status') }}
</div>
</div>
@endif
<div class="ui one column middle aligned stackable grid">
<div class="ui column">
@if($type == 'template')
@@ -13,8 +24,8 @@
@else
<h2><a href="/">Lista</a> &raquo; Edycja notatki</h2>
@endif
@include('form.create')
<br><br>
@include('form.create')
<br><br>
</div>
</div>
</div>