26 lines
707 B
Cheetah
26 lines
707 B
Cheetah
%{ These templates define the form attached at the bottom of viewed page. }%
|
|
|
|
|
|
|
|
%{ Start of form table }%
|
|
%TMPL:DEF{FORM:display:header}%<div class="twikiForm">
|
|
<table class='twikiFormTable' border='1'>%TMPL:P{FORM:display:header:headerrow}%%TMPL:END%
|
|
|
|
|
|
%{ Header }%
|
|
%TMPL:DEF{FORM:display:header:headerrow}%<tr><th class='twikiFormTableHRow twikiFirstCol' colspan='2'>
|
|
[[%A_TITLE%]]
|
|
</th></tr>%TMPL:END%
|
|
|
|
|
|
|
|
%{ Each row }%
|
|
%TMPL:DEF{FORM:display:row}%<tr valign='top'><td class='twikiFormTableRow twikiFirstCol' align='right'> %A_TITLE% </td><td>
|
|
%A_VALUE%
|
|
</td></tr>%TMPL:END%
|
|
|
|
|
|
|
|
%{ Footer }%
|
|
%TMPL:DEF{FORM:display:footer}%</table>%TMPL:P{FORM:display:footer:editlink}%
|
|
</div><!-- /twikiForm -->%TMPL:END% |