[ZPT] creating a definition list with tal

Andreas Jung lists at zopyx.com
Wed Apr 19 10:44:01 EDT 2006



--On 19. April 2006 08:39:37 -0600 gf <gyromagnetic at gmail.com> wrote:

>  {url2,summary2,alias2}, ...]
>
> I would like to create something like the following:
> <dl>
> <dt><a href="url1">alias1</a></dt>
> <dd>summary1</dd>
> <dt><a href="url2">alias2</a></dt>
> <dd>summary2</dd>
> ...
> </dl>
>
> Below I have listed a couple of the variations of code that I have tried.
>
> I'd appreciate any help or advice you can give.
>
> Regards,
> gyro
>
> ===
>
> The following creates repeated definition lists:
>
> ---
>
> <dl tal:define="folder_info get_subfolder_info"
> tal:repeat="finfo folder_info">
> <dt><a tal:attributes="href finfo/url"
>        tal:content="finfo/alias">the term</a></dt>
> <dd tal:content="finfo/summary">the definition</dd>
> </dl>
>

Move the ral:repeat *inside* the DT tag.

> ---
>
> If I include a 'span' to repeat only the dt and dd tagged elements,
> the list is not formatted properly (the 'span' messes up the 'dd'
> formatting).

In this case tal:omit-tag is your friend...as documented.

-aj
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 186 bytes
Desc: not available
Url : http://mail.zope.org/pipermail/zpt/attachments/20060419/aa90f87a/attachment.bin


More information about the ZPT mailing list