76e3fa8925d805fbc44e54f957c07dca453dd734
[kivitendo-erp.git] / templates / webpages / common / render_cvar_value_readonly.html
1 [%- USE T8 %]
2 [%- USE HTML %]
3 [%- USE L %]
4 [%- USE LxERP %]
5
6 [%- IF ( var.config .type == 'bool' ) %]
7   [% IF var.value %]
8    [% LxERP.t8("Yes") %]
9   [% ELSE %]
10    [% LxERP.t8("No") %]
11   [% END %]
12 [%- ELSIF ( var.config .type == 'textfield' ) %]
13   <pre>[% HTML.escape(var.value) %]</pre>
14 [%- ELSIF ( var.config.type == 'number' ) %]
15   [%- LxERP.format_amount(var.value, -2) %]
16 [%- ELSE %]
17   [% HTML.escape(var.value) %]
18 [%- END %]