Forum OpenACS Development: Remove "buttons" multirow from standard.adp

Is there any reason to have the "buttons" multirow in the current "standard.adp"?  Why not just create any extra submit widgets using the standard template::element::create API?

For those of you familiar with the acs-templating code, here's what I'm suggesting:

* in the template::form::template proc in form-procs.tcl, inside the "for" loop that creates the "buttons" multirow, instead use:
    template::element create $id $name -widget submit -label $label

* move the code that creates the "elements" multirow just below this "for" loop (so that any newly created submit widgets are also included)

* remove the "buttons" multirow code from standards.adp

My interest here is to keep the standard form template that comes with OACS as simple as possible.  Also, it ensures that the form is aware of these extra buttons and that they are created in a uniform way.