13 Apr
2007
13 Apr
'07
5:43 a.m.
url: "ServerList?CustomerID=123456"
<tal:x repeat="server here/serverlist-sql"> <tal:x replace="server/name">servername</tal:x> <tal:x replace="server/ID">server ID number</tal:x> <tal:x replace="structure here/ServerSoftwareList">list of software goes here</tal:x> ...</tal:x> The problem is that the ServerSoftwareList needs the "server/ID" passed to it for the query, which will return the software on file for that server... any ideas? <tal:x replace="structure python: here.ServerSoftwareList(id=server['id'])">list of software goes here</tal:x>
-- Maciej Wisniowski