MercurialRoundupTheme

Annotated themes/mercurialroundup/html/home.classlist.html

0:5d31df11531b
2010-06-06 Paul Boddie Import of the Roundup classic templates with copyright and licensing information.
paul@0 1
<tal:block metal:use-macro="templates/page/macros/icing">
paul@0 2
<title metal:fill-slot="head_title" i18n:translate="">List of classes - <span
paul@0 3
 i18n:name="tracker" tal:replace="config/TRACKER_NAME" /></title>
paul@0 4
<span metal:fill-slot="body_title" tal:omit-tag="python:1"
paul@0 5
 i18n:translate="">List of classes</span>
paul@0 6
<td class="content" metal:fill-slot="content">
paul@0 7
<table class="classlist">
paul@0 8
paul@0 9
<tal:block tal:repeat="cl db/classes">
paul@0 10
 <tr>
paul@0 11
  <th class="header" colspan="2" align="left">
paul@0 12
   <a tal:attributes="href string:${cl/classname}"
paul@0 13
      tal:content="python:cl.classname.capitalize()">classname</a>
paul@0 14
  </th>
paul@0 15
 </tr>
paul@0 16
 <tr tal:repeat="prop cl/properties">
paul@0 17
  <th tal:content="prop/_name">name</th>
paul@0 18
  <td tal:content="prop/_prop">type</td>
paul@0 19
 </tr>
paul@0 20
</tal:block>
paul@0 21
paul@0 22
</table>
paul@0 23
</td>
paul@0 24
paul@0 25
</tal:block>