source: LATMOS-Accounts-Web/root/html/sites/index.tt @ 861

Last change on this file since 861 was 510, checked in by nanardon, 15 years ago
  • fix site list
File size: 706 bytes
Line 
1[% db = c.model('Accounts').db %]
2<!-- $Id -->
3<div style="float: right" id="filter">
4[% INCLUDE 'includes/filter.tt'
5   formuri = c.uri_for()
6   otype = 'site'
7%]
8</div>
9
10<table border="0">
11<tr><td colspan="2">[% siteslist.size %] Sites</td></tr>
12<tr><th>Nom</th><th>Ville</th></tr>
13[% FOREACH sitename = siteslist %]
14[% site = db.get_object('site', sitename) %]
15<tr>
16    <td>[% sitename | html %]</td>
17    <td>
18        [% site.get_c_field('l') | html %]
19    <a href="[% c.uri_for('/sites', sitename) %]">
20        <img src="[% c.uri_for('/static', 'icons', 'arrow-right.png') %]"
21            height="16" width="16"
22            alt="[% "edit " _ sitename | html %]">
23    </a></td>
24</tr>
25[% END %]
26</table>
Note: See TracBrowser for help on using the repository browser.