source: WAeUP_SRP/trunk/skins/waeup_directory/member_view.pt @ 1047

Last change on this file since 1047 was 953, checked in by Henrik Bettermann, 18 years ago

member directory acl permission, schema and layouts changed
not yet optimized

File size: 1.0 KB
Line 
1<tal:block define="
2  global id request/id;
3  global dirname string:members;
4  global dir here/portal_directories/?dirname;
5  global dirtitle dir/title_or_id;
6  "/>
7<metal:block use-macro="here/main_template/macros/master">
8
9  <metal:block fill-slot="style_slot">
10    <tal:block define="global actions
11      python:context.getWAeUPDirectoryActions(actions, dirname, dir, 'view', id)"/>
12    <link rel="Stylesheet" type="text/css" href=""
13      tal:attributes="href string:${base_url}document.css" />
14  </metal:block>
15
16
17
18  <metal:block fill-slot="main" tal:define="
19   
20    res python: dir.renderEntryDetailed(id);
21    global rendered_main python: res[0];
22    ds python: res[1];
23    global title ds/?title_field|id;">
24   
25    <h3>
26      <span tal:content="ds/fullname" />     
27    </h3>
28
29
30    <div tal:replace="structure rendered_main">Rendered main...</div>
31    <input type="submit" name="back" i18n:attributes="value"
32      class="standalone" value="button_back" onClick="history.back()" />
33  </metal:block>
34
35</metal:block>
Note: See TracBrowser for help on using the repository browser.