mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Merge pull request #6079 from beganovich/v5-1806-update-copyright-on-mails
(v5) Update copyright on client emails
This commit is contained in:
commit
9ef7d0eb0d
@ -23,5 +23,9 @@
|
|||||||
@isset($url)
|
@isset($url)
|
||||||
<a href="{{ $url }}" class="button" target="_blank">{{ ctrans($button) }}</a>
|
<a href="{{ $url }}" class="button" target="_blank">{{ ctrans($button) }}</a>
|
||||||
@endisset
|
@endisset
|
||||||
|
|
||||||
|
@isset($signature)
|
||||||
|
{!! $signature !!}
|
||||||
|
@endisset
|
||||||
</div>
|
</div>
|
||||||
@endcomponent
|
@endcomponent
|
||||||
|
@ -154,11 +154,15 @@
|
|||||||
<td>
|
<td>
|
||||||
<div class="dark-bg-base"
|
<div class="dark-bg-base"
|
||||||
style="padding-top: 10px;padding-bottom: 10px; background-color: #242424; border: 1px solid #c2c2c2; border-top-color: #242424; border-bottom-color: #242424;">
|
style="padding-top: 10px;padding-bottom: 10px; background-color: #242424; border: 1px solid #c2c2c2; border-top-color: #242424; border-bottom-color: #242424;">
|
||||||
@if(isset($company) && !$company->account->isPaid())
|
@if(isset($company))
|
||||||
<p style="text-align: center; color: #ffffff; font-size: 10px;
|
@if($company->account->isPaid())
|
||||||
font-family: Verdana, Geneva, Tahoma, sans-serif;">© {{ date('Y') }} Invoice Ninja, All
|
<p style="text-align: center; color: #ffffff; font-size: 10px;
|
||||||
Rights Reserved
|
font-family: Verdana, Geneva, Tahoma, sans-serif;">© {{ date('Y') }} {{ $company->present()->name() }}, All Rights Reserved</p>
|
||||||
</p>
|
@else
|
||||||
|
<p style="text-align: center; color: #ffffff; font-size: 10px; font-family: Verdana, Geneva, Tahoma, sans-serif;">
|
||||||
|
© {{ date('Y') }} Invoice Ninja, All Rights Reserved
|
||||||
|
</p>
|
||||||
|
@endif
|
||||||
@else
|
@else
|
||||||
<p style="text-align: center; color: #ffffff; font-size: 10px; font-family: Verdana, Geneva, Tahoma, sans-serif;">
|
<p style="text-align: center; color: #ffffff; font-size: 10px; font-family: Verdana, Geneva, Tahoma, sans-serif;">
|
||||||
© {{ date('Y') }} Invoice Ninja, All Rights Reserved
|
© {{ date('Y') }} Invoice Ninja, All Rights Reserved
|
||||||
|
Loading…
x
Reference in New Issue
Block a user