Why i cant solve this problem.
this is main :
render = web.template.render('template/')
class index:
def GET(self):
komplet = "<html><head><title>test</title></head> \
<body><p>test</p> \
</body></html>"
return render.index(komplet)
this is template file:
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html;
charset=UTF-8">
</head>
<body>
def with (komplet):
I just wanted to say <em>hello</em>
<em>Hello $komplet</em>, world!
</body>
</html>
Why is saying takes no arguments ??
--
You received this message because you are subscribed to the Google Groups
"web.py" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/webpy?hl=en.