Re: help with "Key 'timeout' not found in "

2012-05-04 Thread psychok7
t an easy combination for this exact > situation. > > Good luck! > -Kurtis Mullins > > * > * *Sent:* Thursday, May 03, 2012 4:47:56 PM > *To:* django-users@googlegroups.com > *Subject:* Re: help with "Key 'timeout' not found in " > >

Re: help with "Key 'timeout' not found in "

2012-05-04 Thread psychok7
thanks guys it worked. i did a POST from and it worked ;) cheers On Friday, May 4, 2012 8:58:58 AM UTC+1, Jani Tiainen wrote: > > > 4.5.2012 1:22, psychok7 kirjoitti: > > hi i have done a succefull query and i converted the results into links > > so i can make a post by clicking on the links to

Re: help with "Key 'timeout' not found in "

2012-05-04 Thread Kurtis Mullins
Jani is right, I didn't take a close look at that HTML. Using this (without any Javascript), you're not submitting a form with method="post" so you won't actually have any of that request.POST data available that you're looking for. On Fri, May 4, 2012 at 3:58 AM, Jani Tiainen wrote: > > 4.5.201

Re: help with "Key 'timeout' not found in "

2012-05-04 Thread Jani Tiainen
4.5.2012 1:22, psychok7 kirjoitti: hi i have done a succefull query and i converted the results into links so i can make a post by clicking on the links to make a reservation. No, you haven't. When you click you'll still send very much standard GET request to server. You can and should verify

RE: help with "Key 'timeout' not found in "

2012-05-03 Thread Kurtis Mullins
users@googlegroups.com *Subject:* Re: help with "Key 'timeout' not found in " timeout field is just an INTEGER.. just saying the amount of time the space will be reserved. class Reservation(models.Model):user = models.ForeignKey(User) park = models.Foreign

Re: help with "Key 'timeout' not found in "

2012-05-03 Thread psychok7
timeout field is just an INTEGER.. just saying the amount of time the space will be reserved. class Reservation(models.Model):user = models.ForeignKey(User)park = models.ForeignKey(Park)notification = models.ForeignKey(Notification) timeout = models.IntegerField()active =

Re: help with "Key 'timeout' not found in "

2012-05-03 Thread Kurtis Mullins
Can we see what your "Reservation" model looks like? Specifically, that 'timeout' field? On Thu, May 3, 2012 at 6:22 PM, psychok7 wrote: > hi i have done a succefull query and i converted the results into links so > i can make a post by clicking on the links to make a reservation. > > my problem

help with "Key 'timeout' not found in "

2012-05-03 Thread psychok7
hi i have done a succefull query and i converted the results into links so i can make a post by clicking on the links to make a reservation. my problem is, theres a variable timeout that i want to specify manually, but i get a "Key 'timeout' not found in " i know i am supposed to pass that vari