Tagged Questions
2
votes
3answers
2k views
Pylons FormEncode with an array of form elements
I have a Pylons app and am using FormEncode and HtmlFill to handle my forms. I have an array of text fields in my template (Mako)
<tr>
<td>Yardage</td>
...
1
vote
1answer
416 views
Using Pylons validate and authenticate_form decorator
The validate and authenticate_form decorators don't seem to play nice together. This is my template:
<html>
<title>Test</title>
<body>
${h.secure_form('/meow/do_post')}
...