[ZPT] creating a definition list with tal

gf gyromagnetic at gmail.com
Wed Apr 19 11:05:42 EDT 2006


On 4/19/06, Andreas Jung <lists at zopyx.com> wrote:
>
>
> --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
>
>

Thank you, Andreas!
That was a great help.

Best Regards,
gyro


More information about the ZPT mailing list