source: WAeUP_SRP/trunk/skins/waeup_student/accommodation_view_all.pt @ 440

Last change on this file since 440 was 414, checked in by lregebro, 18 years ago

Added an upgrade step for accomodation tool to accommodation tool.

File size: 782 bytes
Line 
1<html metal:use-macro="here/content_lib_master/macros/master">
2
3<metal:block fill-slot="head_slot">
4  <tal:block tal:define="student here/getContent">
5  </tal:block>
6</metal:block>
7
8  <metal:block fill-slot="header">
9  </metal:block>
10
11<metal:block fill-slot="main"
12             tal:define="items here/contentValues"
13             >
14    <h2>Accommodation</h2>
15    <table cellspacing="0" cellpadding="0">
16      <tal:block condition="python: len(items)">
17        <tr tal:repeat="item items">
18          <td colspan="1">
19            <a href="jamb"
20               tal:attributes="href item/absolute_url"
21               tal:content="item/heading"></a>
22          </td>
23        </tr>
24      </tal:block>
25    </table>
26  </metal:block>
27  <metal:block fill-slot="sub">
28  </metal:block>
29</html>
Note: See TracBrowser for help on using the repository browser.