projects
/
kivitendo-erp.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Lieferschein: Kunden-/Lieferantenpicker nutzen
[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 = SELF.cv.cvars_by_config %]
7
<tr>
8
<th align="right" valign="top" nowrap>[% var.config.description | html %]</th>
9
10
<td valign="top">
11
[% INCLUDE 'common/render_cvar_input.html'
12
cvar_name_prefix = 'cv_cvars.'
13
var_name = ''
14
%]
15
</td>
16
</tr>
17
[% END %]
18
</table>
19
</p>
20
</div>