Question

How can I access my request.params post data from my Mako template with Pylons?

Was it helpful?

Solution

Same as in the controller.

${request.params['my_param']}

or preferably:

${request.params.get('my_param', '')}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top