source: WAeUP_SRP/trunk/skins/waeup_directory/layout_waeup_dir_view.pt @ 916

Last change on this file since 916 was 916, checked in by joachim, 18 years ago

Membersearch now shows a link Roles In
the pagetemplate for the results is search_members_results
for the search_mask is search_members_form.

the search is called with search_members

  • Property svn:keywords set to Id
File size: 1.1 KB
Line 
1<tal:block define="layout options/layout;
2                   dirname request/dirname;
3                   dir here/portal_directories/?dirname;
4                   id_field dir/id_field;
5                   ">
6<div class="group">
7  <table cellpadding="2" cellspacing="2" summary="layout">
8    <tr tal:repeat="row layout/rows">
9      <tal:block repeat="cell row">
10      <tal:block define="widget cell/widget">
11        <td align="right" valign="top">
12          <div class="dlabel">
13          <span i18n:translate="" tal:condition="widget/is_i18n"
14            tal:content="widget/label">label</span
15          ><span tal:condition="not:widget/is_i18n"
16            tal:content="widget/label">label</span
17          >&nbsp;:
18          </div>
19        </td>
20        <td valign="top" colspan="1"
21          tal:attributes="colspan python:cell['ncols']*2-1">
22          <div tal:attributes="class widget/css_class|nothing">
23            <tal:block replace="structure cell/widget_rendered" />
24          </div>
25        </td>
26      </tal:block>
27      </tal:block>
28    </tr>
29  </table>
30</div>
31</tal:block>
Note: See TracBrowser for help on using the repository browser.