Code

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