I am listing about 20 rows, each row represents an Order.
Each row needs to have 3 buttons, each button click will perform a different action.
I have 3 actions to handle each button post request, I am just unsure how to setup the Html forms for each button.
<tr>
<td>
<form method="post" action="/orders/do1"><input type=button ... /></form>
<form method="post" action="/orders/do2"><input type=button ... /></form>
<form method="post" action="/orders/do3"><input type=button ... /></form>
</td>
</tr>
Should I create 3 forms for each button, per row in my listing?
(that would mean 20 rows x 3 forms = 60 forms on a page)
Is that 'ok' to do? (i.e. or is there a better way to do this?)