Hi *, How can I tack on a sting to my request/BASE1? eg. something like the following. <a href=".." tal:attributes="href request/BASE1 + '/some_page_template'">link</a> Regards, Michael Fox ^-^ Analyst/Programmer <`-`> ___ Century Software ' `' '. Tel +61 2 9460 1422 `. ` ' .'. Fax +61 2 9460 3098 ||.' '._/'.`.' www.CenturySoftware.com.au "" "
Michael Fox wrote:
Hi *,
How can I tack on a sting to my request/BASE1? eg. something like the following.
<a href=".." tal:attributes="href request/BASE1 + '/some_page_template'">link</a>
<a href=".." tal:attributes="href string:${request/BASE1}/some_page_template">link</a> Jim
Michael Fox wrote:
Hi *,
How can I tack on a sting to my request/BASE1? eg. something like the following.
<a href=".." tal:attributes="href request/BASE1 + '/some_page_template'">link</a>
<a href=".." tal:attributes="href string:${request/BASE1} /${here/some_page_template}"> link </a> or <a href=".." tal:attributes="href python:'' + request['BASE1'] + '/' + some_page_template">link</a> Pretty sure those would work
participants (3)
-
Jim Gallacher -
Michael Fox -
Will Smith