mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
Decorate inline attachments across all email designs
This commit is contained in:
parent
bd6c666966
commit
1f6621e3f8
@ -172,6 +172,11 @@
|
||||
|
||||
<div>
|
||||
@isset($links)
|
||||
|
||||
@if(count($links) >=1)
|
||||
<p><strong>{{ ctrans('texts.attachments') }}</strong></p>
|
||||
@endif
|
||||
|
||||
@foreach($links as $link)
|
||||
{!! $link ?? '' !!}<br>
|
||||
@endforeach
|
||||
|
@ -20,6 +20,21 @@
|
||||
</tr>
|
||||
@endif
|
||||
|
||||
@isset($links)
|
||||
|
||||
@if(count($links) >=1)
|
||||
<p><strong>{{ ctrans('texts.attachments') }}</strong></p>
|
||||
@endif
|
||||
|
||||
@foreach($links as $link)
|
||||
<tr>
|
||||
<td>
|
||||
<p> {!! $link ?? '' !!}</p>
|
||||
</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
@endisset
|
||||
|
||||
@isset($whitelabel)
|
||||
@if(!$whitelabel)
|
||||
<p>
|
||||
|
Loading…
Reference in New Issue
Block a user