In my python code I have
the_button = '''<form action="/edit" method="get" >
<input type="submit" name="edit" value="Edit" />
</form>'''
template_values = { 'the_button':the_button }
path = os.path.join(os.path.dirname(__file__), 'the.html')
self.response.out.write(template.render(path, template_values))
The problem is that when I see in the page it will show the button but non-clickable, then when I view the page source of the html it doesn't show the code.
What could be the problem?
Thanks!
the.htmltemplate? – Jason Hall Jan 26 '11 at 4:19