Re: No POST response when using checkbox form

2011-02-08 Thread Ethan Yandow
How bad of an Idea is it to not use Django forms? I feel like Django forms are kinda a pain On Fri, Feb 4, 2011 at 12:06 PM, Tom Evans wrote: > On Fri, Feb 4, 2011 at 4:20 PM, Shawn Milochik wrote: > > Here's the main piece: > > http://docs.djangoproject.com/en/1.2/ref/forms/ > > Just make a f

Re: No POST response when using checkbox form

2011-02-04 Thread Tom Evans
On Fri, Feb 4, 2011 at 4:20 PM, Shawn Milochik wrote: > Here's the main piece: > http://docs.djangoproject.com/en/1.2/ref/forms/ > Just make a form with a boolean field. > When you've successfully made one form that you submit, validate, and act > upon, just throw a bunch in a formset: > http://do

Re: No POST response when using checkbox form

2011-02-04 Thread Shawn Milochik
Here's the main piece: http://docs.djangoproject.com/en/1.2/ref/forms/ Just make a form with a boolean field. When you've successfully made one form that you submit, validate, and act upon, just throw a bunch in a formset: http://docs.djangoproject.com/en/1.2/topics/forms/formsets/ If you get

Re: No POST response when using checkbox form

2011-02-04 Thread Ethan Yandow
Hmmm, I am having a hard time understanding the django forms... Would someone mind giving me an example of how I would list my events with check boxes next to them please :) On Fri, Feb 4, 2011 at 10:07 AM, Ethan Yandow wrote: > aahhh yes!!! Thank you very much!!! Alright, ill work on implement

Re: No POST response when using checkbox form

2011-02-04 Thread Ethan Yandow
aahhh yes!!! Thank you very much!!! Alright, ill work on implementing those form views :) On Fri, Feb 4, 2011 at 4:25 AM, Daniel Roseman wrote: > On Friday, February 4, 2011 9:24:48 AM UTC, Daniel Roseman wrote: >> >> On Friday, February 4, 2011 12:35:20 AM UTC, Ethan Yandow wrote: >>> >>> Hey t

Re: No POST response when using checkbox form

2011-02-04 Thread Daniel Roseman
On Friday, February 4, 2011 9:24:48 AM UTC, Daniel Roseman wrote: > > On Friday, February 4, 2011 12:35:20 AM UTC, Ethan Yandow wrote: >> >> Hey there, I am trying to delete Events as chosen by a by a user using >> check boxes to check of which events they want to be deleted. But for >> some rea

Re: No POST response when using checkbox form

2011-02-04 Thread Daniel Roseman
On Friday, February 4, 2011 12:35:20 AM UTC, Ethan Yandow wrote: > > Hey there, I am trying to delete Events as chosen by a by a user using > check boxes to check of which events they want to be deleted. But for > some reason whenever I call request.POST.get('event_list') Nothing is > received

No POST response when using checkbox form

2011-02-03 Thread Ethan Yandow
Hey there, I am trying to delete Events as chosen by a by a user using check boxes to check of which events they want to be deleted. But for some reason whenever I call request.POST.get('event_list') Nothing is received even though boxes are checked and I end up with nothing. Here is my template a