1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
<html xmlns="http://www.w3.org/1999/xhtml"
xml:lang="en"
lang="en"
metal:use-macro="here/main_template/macros/master"
i18n:domain="plonehelpcenter">
.........
<table id="sortable"
class="listing"
summary="Content listing"
i18n:attributes="summary summary_content_listing;">
<thead>
<tr>
<th tal:attributes="class python:nosortclass"> <tal:kiki i18n:translate="listingheader_kiki"
>ScdmLead</tal:kiki>
</th>
</tr>
<tbody>
<tal:package tal:repeat="package packages">
<tr>
<td><span tal:condition="not: package/scdmLead"> </span>
<span tal:attributes="href package/getURL" tal:content="package/kiki"/>
<span tal:replace="python: ', '.join(here.getkiki())"/>
</td>
</metal:item_slot>
</tal:package>
</tbody>
</table> |