Code

637f353e7b0f03950c33fbae2666fdfa1c5f131e
[roundup.git] / templates / classic / html / home.classlist.html
1 <tal:block metal:use-macro="templates/page/macros/icing">
2 <title metal:fill-slot="head_title">List of classes</title>
3 <span metal:fill-slot="body_title" tal:omit-tag="python:1">List of classes</span>
4 <td class="content" metal:fill-slot="content">
5 <table class="classlist">
7 <tal:block tal:repeat="cl db/classes">
8  <tr>
9   <th class="header" colspan="2" align="left">
10    <a tal:attributes="href string:${cl/classname}"
11       tal:content="python:cl.classname.capitalize()">classname</a>
12   </th>
13  </tr>
14  <tr tal:repeat="prop cl/properties">
15   <th tal:content="prop/_name">name</th>
16   <td tal:content="prop/_prop">type</td>
17  </tr>
18 </tal:block>
20 </table>
21 </td>
23 </tal:block>