source: tags/5.1.17/LATMOS-Accounts-Web/root/html/request/recorded.tt @ 1759

Last change on this file since 1759 was 1231, checked in by nanardon, 11 years ago

fix infomartion not display only at end of table

File size: 597 bytes
Line 
1<!-- $Id$ -->
2
3<h2>[% accreq.get_attributes('description') | html %]</h2>
4
5[% IF accreq.get_attributes('requireObject') %]
6<h3>[% datarequest.get_attributes('displayName') || datarequest.id %]</h3>
7[% END %]
8
9[% FOREACH attr = values.keys %]
10[% IF loop.first %]
11<table>
12[% END %]
13
14[% attrinfo = datarequest.attribute_info(attr) %]
15<tr>
16<th>[% form.attr_label(attr, attrinfo.label) %]</th>
17<td>
18[% FOREACH v = values.$attr %]
19[% v | html %]<br>
20[% END %]
21</td>
22</tr>
23
24[% IF loop.last %]
25<tr>
26<th>Date d'application</th>
27<td>
28[% datarequest.apply | html %]
29</td>
30</tr>
31</table>
32[% END %]
33[% END %]
Note: See TracBrowser for help on using the repository browser.