mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 05:32:39 +01:00
Fix quote terms/signature label
This commit is contained in:
parent
624c3d9781
commit
7515ccd321
@ -323,9 +323,11 @@
|
||||
</div>
|
||||
|
||||
<div class="panel-body">
|
||||
@if ($invoice->terms)
|
||||
<div class="well" style="max-height:300px;overflow-y:scroll">
|
||||
{!! nl2br(e($invoice->terms)) !!}
|
||||
</div>
|
||||
@endif
|
||||
@if ($account->showSignature($invoice))
|
||||
<div>
|
||||
{{ trans('texts.sign_here') }}
|
||||
@ -343,7 +345,9 @@
|
||||
</label>
|
||||
</div>
|
||||
@endif
|
||||
<button id="modalPayNowButton" type="button" class="btn btn-success" onclick="onModalPayNowClick()" disabled="">{{ trans('texts.pay_now') }}</button>
|
||||
<button id="modalPayNowButton" type="button" class="btn btn-success" onclick="onModalPayNowClick()" disabled="">
|
||||
{{ $invoice->isQuote() ? trans('texts.approve') : trans('texts.pay_now') }}
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user