slitaz-forge diff 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 diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/bugs/templates/slitaz/html/home.classlist.html	Thu Apr 14 01:13:16 2011 +0200
     1.3 @@ -0,0 +1,26 @@
     1.4 +<tal:block metal:use-macro="templates/page/macros/icing">
     1.5 +<title metal:fill-slot="head_title" i18n:translate="">List of classes - <span
     1.6 + i18n:name="tracker" tal:replace="config/TRACKER_NAME" /></title>
     1.7 +<span metal:fill-slot="body_title" tal:omit-tag="python:1"
     1.8 + i18n:translate="">List of classes</span>
     1.9 +<td class="content" metal:fill-slot="content">
    1.10 +<table class="classlist">
    1.11 +
    1.12 +<tal:block tal:repeat="cl db/classes">
    1.13 + <tr>
    1.14 +  <th class="header" colspan="2" align="left">
    1.15 +   <a tal:attributes="href string:${cl/classname}"
    1.16 +      tal:content="python:cl.classname.capitalize()">classname</a>
    1.17 +  </th>
    1.18 + </tr>
    1.19 + <tr tal:repeat="prop cl/properties">
    1.20 +  <th tal:content="prop/_name">name</th>
    1.21 +  <td tal:content="prop/_prop">type</td>
    1.22 + </tr>
    1.23 +</tal:block>
    1.24 +
    1.25 +</table>
    1.26 +</td>
    1.27 +
    1.28 +</tal:block>
    1.29 +<!-- SHA: e82456270ae1048cefdead99afda95578fff7b74 -->