source: branches/2.0/LATMOS-Accounts-Web/root/html/includes/form.tt @ 1062

Last change on this file since 1062 was 1062, checked in by nanardon, 12 years ago
  • tag version 2.0
  • Property svn:keywords set to Id Rev
File size: 519 bytes
Line 
1<!-- $Id$ -->
2<div id="oform" class="oform">
3[% attributes = form.attributes() %]
4[% IF attributes.0 %]
5[% FOREACH attr =  attributes %]
6[% IF loop.first %]
7<form action="[% form_uri | html %]" method="POST">
8<table border=1>
9<tr><th colspan=2>
10    [% form.label | html %]
11</th></tr>
12[% END %]
13<tr><th>[% form.attr_label(attr) %]</th><td>[% form.attr_field(attr) %]</td>
14[% IF loop.last %]
15<tr><td colspan=2>[% form.submit %]</td></tr>
16</table>
17</form>
18[% END %]
19[% END %]
20[% ELSE %]
21[% perm_denied %]
22[% END %]
23</div>
Note: See TracBrowser for help on using the repository browser.