projects
/
kivitendo-erp.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
7af8b793257d2e37bca7c7a0f8394dab957c062e
[kivitendo-erp.git]
/
templates
/
webpages
/
customer_vendor
/
tabs
/
custom_variables.html
1
[%- USE HTML %]
2
3
<div id="custom_variables">
4
<p>
5
<table>
6
[% FOREACH var = cv_cvars %]
7
<tr>
8
<th align="left" valign="top" nowrap>[% var.config.description | html %]</th>
9
10
<td valign="top">
11
[%
12
INCLUDE 'customer_vendor/render_cvar_input.html'
13
cvar_name_prefix = 'cv_cvars.'
14
%]
15
</td>
16
</tr>
17
[% END %]
18
</table>
19
</p>
20
</div>