source: WAeUP_SRP/base/skins/waeup_directory/layout_waeup_dir_view.pt @ 2565

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

removed username from member_search mask, because there is no easy way to
not search for student-members. In my opinion search for firstname, lastname
and email is sufficient.
The local-role SectionReader? is set for Authenticated in exportimport.py,
but now the import takes 3 times as long. I think we have to remove this
setting from exportimport.

  • Property svn:keywords set to Id
File size: 1.1 KB
Line 
1<tal:block define="layout options/layout;
2                   dirname string:members;
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.