Display saved template name in header
This commit is contained in:
parent
ad202be374
commit
75bd056bbe
1 changed files with 7 additions and 1 deletions
|
@ -27,7 +27,13 @@
|
||||||
<!-- Horizontal Form -->
|
<!-- Horizontal Form -->
|
||||||
<div class="box box-default">
|
<div class="box box-default">
|
||||||
<div class="box-header with-border">
|
<div class="box-header with-border">
|
||||||
<h2 class="box-title">{{ trans('general.customize_report') }}</h2>
|
<h2 class="box-title">
|
||||||
|
@if ($savedReport->name)
|
||||||
|
Saved Template: {{ $savedReport->name }}
|
||||||
|
@else
|
||||||
|
{{ trans('general.customize_report') }}
|
||||||
|
@endif
|
||||||
|
</h2>
|
||||||
</div><!-- /.box-header -->
|
</div><!-- /.box-header -->
|
||||||
|
|
||||||
<div class="box-body">
|
<div class="box-body">
|
||||||
|
|
Loading…
Add table
Reference in a new issue