slitaz-forge view bugs/templates/slitaz/html/home.classlist.html @ rev 64

Add bugs template and WSGI handler (may be buggy --> fallback to CGI or roundup-server)
author Christophe Lincoln <pankso@slitaz.org>
date Thu Apr 14 01:13:16 2011 +0200 (2011-04-14)
parents
children
line source
1 <tal:block metal:use-macro="templates/page/macros/icing">
2 <title metal:fill-slot="head_title" i18n:translate="">List of classes - <span
3 i18n:name="tracker" tal:replace="config/TRACKER_NAME" /></title>
4 <span metal:fill-slot="body_title" tal:omit-tag="python:1"
5 i18n:translate="">List of classes</span>
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>
26 <!-- SHA: e82456270ae1048cefdead99afda95578fff7b74 -->