Re: Check box form

2007-10-18 Thread jacoberg2
Thanks for all the help, I am still using some oldforms because i picked up this project from someone else, so thanks for the html work around. I will keep the newforms method in mind as well when an update rolls around. Again, this was a great help. Jacob On Oct 17, 5:30 pm, rskm1 <[EMAIL

Re: Check box form

2007-10-17 Thread Michael
Hi Jacob, I had a similar situation. The key points that I wanted were: 1. Still use a normal Django newform that can validate itself etc. 2. Control of HTML remains in the template. The way I went about it was to: 1. Create a new form, say ManageRegistrationsForm that takes a result- set of

Re: Check box form

2007-10-17 Thread rskm1
On Oct 17, 1:52 pm, jacoberg2 <[EMAIL PROTECTED]> wrote: > I am trying to create a checkbox form so that the user can delete a > large number of > registrations at once. I am wondering how I should set up the view in > order to deal with > the incoming data. Any suggestions? The template can