
git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@646 fd906abe-77d9-0310-91a1-e0d9ade77398
44 lines
1.2 KiB
XML
44 lines
1.2 KiB
XML
<table
|
|
id="sortable" class="listing" summary="Content listing"
|
|
cellpadding="2" cellspacing="0"
|
|
i18n:attributes="summary">
|
|
|
|
<thead>
|
|
<tr>
|
|
<th> </th>
|
|
<th i18n:translate="">Name</th>
|
|
<th i18n:translate="">Title</th>
|
|
<th i18n:translate="">Created</th>
|
|
<th i18n:translate="">Modified</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr tal:repeat="info view/listContentInfo">
|
|
<td>
|
|
<a
|
|
href="#"
|
|
tal:attributes="href string:${request/URL}/${info/url}"
|
|
tal:content="structure info/icon|default" />
|
|
</td>
|
|
|
|
<td class="ContentTitle">
|
|
<a href="subfolder_id"
|
|
tal:attributes="href info/url"
|
|
tal:content="info/id"
|
|
i18n:translate=""
|
|
>ID here</a>
|
|
</td>
|
|
|
|
<td><span tal:content="info/title|default"
|
|
i18n:translate=""> </span></td>
|
|
<td><span tal:content="info/created|default"
|
|
i18n:translate=""> </span></td>
|
|
<td><span tal:content="info/modified|default"
|
|
i18n:translate=""> </span></td>
|
|
|
|
</tr>
|
|
</tbody>
|
|
|
|
</table>
|