Code

2eb1304ad883d975de2e9be62354344db77001d0
[roundup.git] / roundup / templates / classic / html / home.classlist
1 <table class="classlist">
3 <tal:block tal:repeat="cl db/classes">
4  <tr>
5   <th class="header" colspan="2" align="left">
6    <a tal:attributes="href string:${cl/classname}"
7       tal:content="python:cl.classname.capitalize()">classname</a>
8   </th>
9  </tr>
10  <tr tal:repeat="prop cl/properties">
11   <th tal:content="prop/name">name</th>
12   <td tal:content="prop/prop">type</td>
13  </tr>
14 </tal:block>
16 </table>