[Zope] Title of another document

Christopher J. Kucera ckucera@globalcrossing.com
Mon, 08 May 2000 13:31:42 -0500


"Christopher J. Kucera" wrote:
> 
> > How do I "get" the Title of a DTML document from
> > another DTML document.
> >
> > What I want is:
> > <a href="nextdoc_html"><dtml-var
> > "title.of.nextdoc_html"></a> ...or something.
> 
> <dtml-with DocName>
>   <a href="&dtml-id;">&dtml-title;</a>
> </dtml-with>

Oops, needs to be quotes around DocName; sorry.  And you could
do the much-simpler <dtml-var "DocName.title">, too.  (Gotta remember
to THINK before posting.  *DOH!*)

-CJ