There should be a submit_buttons argument instead:
def __init__(self, widgets, submit_buttons=[(SubmitButton("submit",
"Submit")...])
The template then has somthing like:
<tr>
<td> </td>
<td><span class="submit_button" py:for="submit in
submit_buttons" py:content="submit.insert()"/></td>
</tr>

