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

webmaster at zope.org webmaster at zope.org
Sat Dec 27 01:04:07 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>

      % Anonymous User - Dec. 27, 2003 12:33 am:
       No, actually it should read exactly what it says there.
       The explanation for why it should have the "repeat/" before it is quite bad, though.

      % Anonymous User - Dec. 27, 2003 1:04 am:
       Nevermind, it makes sense now:
       'repeat' is a variable.
       no object in the 'item' array has a 'number' attribute
       so to number everything, you need to write 'repeat/number' to get the 'repeat' variable's 'number attribute'

       since the tal:repeat may be nested, 'repeat/number' is ambigious in this context, so:
       'repeat/list/number'

       makes sense now :)



More information about the ZDP mailing list