source: waeup_product/trunk/skins/waeup_default/faculties.pt @ 95

Last change on this file since 95 was 85, checked in by joachim, 19 years ago

=added missing faculties.pt

File size: 1009 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 context/contentValues"
13               >
14    <span>
15      <table cellspacing="0" cellpadding="0">
16        <tal:block condition="python: len(items)">
17          <span tal:repeat="item items">
18            <tr tal:condition="python:item.portal_type == 'Faculty'">
19              <td colspan="1">
20                <a href="faculty" tal:attributes="href item/absolute_url" tal:content="item/title_or_id"></a>
21              </td>
22            </tr>
23          </span>
24        </tal:block>
25        <tr tal:condition="python:not len(items)">
26          <td>
27            nothing yet !
28          </td>
29        </tr>
30      </table>
31    </span>
32  </metal:block>
33  <metal:block fill-slot="sub">
34  </metal:block>
35</html>
Note: See TracBrowser for help on using the repository browser.