hi,<br>
<br>
If I have a ParsedXML document with the following:<br>
<br>
<pre>&lt;?xml version=&quot;1.0&quot;?&gt;<br>&lt;faq title=&quot;A Sample FAQ&quot;&gt;<br>  &lt;entry&gt;<br>    &lt;question&gt;To be or not to be?&lt;/question&gt;<br>    &lt;answer&gt;That is the question.&lt;/answer&gt;
<br>   &lt;/entry&gt;<br>   &lt;entry&gt;<br>    &lt;question&gt;The question of life<br>    the universe and everything?&lt;/question&gt;<br>    &lt;answer&gt;42&lt;/answer&gt;<br>   &lt;/entry&gt;<br>&lt;/faq&gt;</pre>
<br>
>From a page template, how to I access the questions and answers? So I can start displaying the XML document content.<br>
I tried various forms of:<br>
<br>
&lt;p tal:content=&quot;here/myxmldoc/entry/question&quot;&gt;&lt;/p&gt;<br>
<br>
I'd also like to use it through acquisition if possible. Make a method that views and entry and then call in on my document?<br>
<br>
<br>
But no luck.<br>
<br>
Thanks,<br>
Jason.<br>
<br>