projects
/
kivitendo-erp.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
a0a90f9e5fea0538823ab334d5e6e54f05d7f5b6
[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
[% PROCESS 'customer_vendor/render_cvar_input.html'
12
cvar_name_prefix = 'cv_cvars.'
13
%]
14
</td>
15
</tr>
16
[% END %]
17
</table>
18
</p>
19
</div>