[ZDP] BackTalk to Document The Zope Book (2.6 Edition)/Using Zope Page Templates

webmaster at zope.org webmaster at zope.org
Mon Dec 22 11:01:44 EST 2003


A comment to the paragraph below was recently added via http://zope.org/Documentation/Books/ZopeBook/2_6Edition/ZPT.stx#2-34

---------------

    Now let's add some context to your 'simple_page' template, in the
    form of a list of the objects that are in the same Folder as the
    template.  You will make a table that has a numbered row for each
    object, and columns for the id, meta-type, and title.  Add these
    lines to the bottom of your example template::

      <table border="1" width="100%">
        <tr>
          <th>Number</th>
          <th>Id</th>
          <th>Meta-Type</th>
          <th>Title</th>
        </tr>
        <tr tal:repeat="item container/objectValues">
          <td tal:content="repeat/item/number">#</td>
          <td tal:content="item/getId">Id</td>
          <td tal:content="item/meta_type">Meta-Type</td>
          <td tal:content="item/title">Title</td>
        </tr>
      </table>

      % Anonymous User - Dec. 22, 2003 11:01 am:
       ERROR! should read "td tal:content="item/number">#</td>



More information about the ZDP mailing list