3 Jan
2008
3 Jan
'08
6:26 p.m.
Victor Subervi wrote at 2008-1-2 14:44 -0400:
... <html> <body> <table> <tr> <td tal:define="num python:here.scripts.getQuote">
As Andreas already has pointed out, you probably need "getQuote()" rather than "getQuote" (as the name suggests, it is a method not a value).
<span metal:use-macro="here/en-us/quotes/?num/macros/quote" /><br />
"?var" in a path expression means: replace "?var" by the value of "var". Therefore, if "num" contains the right value, the above should work. -- Dieter