|
Lines 1-15
Link Here
|
| 1 |
<div class="notice" style=" |
1 |
<style> |
| 2 |
text-align:[% PROCESS translate_justification_types type=notice.text_justify | trim %]; |
2 |
#slip, #receipt { |
| 3 |
font-size:[% notice.font_size %]px; |
3 |
text-align:[% PROCESS translate_justification_types type=notice.text_justify | trim %]; |
| 4 |
width:[% notice.notice_width %][% PROCESS translate_unit_types type=notice.units | trim %]; |
4 |
font-size:[% notice.font_size %]px; |
| 5 |
margin-top:[% notice.top_margin %][% PROCESS translate_unit_types type=notice.units | trim %]; |
5 |
width:[% notice.notice_width %][% PROCESS translate_unit_types type=notice.units | trim %]; |
| 6 |
margin-left:[% notice.left_margin %][% PROCESS translate_unit_types type=notice.units | trim %]; |
6 |
margin-top:[% notice.top_margin %][% PROCESS translate_unit_types type=notice.units | trim %]; |
| 7 |
"> |
7 |
margin-left:[% notice.left_margin %][% PROCESS translate_unit_types type=notice.units | trim %]; |
| 8 |
[% IF notice.is_html %] |
8 |
} |
| 9 |
[% notice.content | $raw %] |
9 |
|
| 10 |
[% ELSE %] |
10 |
h3, h4, th, td, th:last-child, td:last-child { |
| 11 |
<pre> |
11 |
text-align:[% PROCESS translate_justification_types type=notice.text_justify | trim %]; |
| 12 |
[% notice.content | html %] |
12 |
font-size:[% notice.font_size %]px; |
| 13 |
</pre> |
13 |
} |
| 14 |
[% END %] |
14 |
</style> |
| 15 |
</div> |
15 |
|
|
|
16 |
[% IF notice.is_html %] |
| 17 |
[% notice.content | $raw %] |
| 18 |
[% ELSE %] |
| 19 |
<pre> |
| 20 |
[% notice.content | html %] |
| 21 |
</pre> |
| 22 |
[% END %] |
| 16 |
- |
|
|