mirror of
https://github.com/snipe/snipe-it.git
synced 2025-03-05 20:52:15 -08:00
Display saved template name in header
This commit is contained in:
parent
ad202be374
commit
75bd056bbe
|
@ -27,7 +27,13 @@
|
|||
<!-- Horizontal Form -->
|
||||
<div class="box box-default">
|
||||
<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 class="box-body">
|
||||
|
|
Loading…
Reference in a new issue