Revision f5370f26
Von Tamino Steinert vor mehr als 1 Jahr hinzugefügt
| templates/design40_webpages/email_journal/tabs/basic_data.html | ||
|---|---|---|
|
<tr>
|
||
|
<th>[% 'Body' | $T8 %]</th>
|
||
|
<td>
|
||
|
[% IF SELF.entry.headers.match('(?i)content-type:.*text/html') %]
|
||
|
<div style="border:1px solid black;">
|
||
|
[% P.restricted_html(SELF.entry.body) %]
|
||
|
</div>
|
||
|
[% ELSE %]
|
||
|
[% L.textarea_tag('body', SELF.entry.body, wrap="soft", style="color:black; height:200px", class="wi-verywide", disabled=1) %]
|
||
|
[% END %]
|
||
|
<div style="border:1px solid black; resize: both; overflow: auto; min-height:50px">
|
||
|
[% IF SELF.entry.headers.match('(?i)content-type:.*text/html') %]
|
||
|
[% P.restricted_html(SELF.entry.body) %]
|
||
|
[% ELSE %]
|
||
|
<pre>[% SELF.entry.body | html %]</pre>
|
||
|
[% END %]
|
||
|
</div>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</tbody>
|
||
Auch abrufbar als: Unified diff
EmailJournal: Zeige den Text richtig an.