Re: Confused about model save/update

2012-11-26 Thread Lachlan Musicman
> Reply-To: django-users@googlegroups.com > Subject: Re: Confused about model save/update > > On Tue, Nov 27, 2012 at 11:00 AM, wrote: >> Hi there, >> >> a long shot since you have not provided your save() method. Are you >> calling super() there? > >

Re: Confused about model save/update

2012-11-26 Thread jirka . vejrazka
: Reply-To: django-users@googlegroups.com Subject: Re: Confused about model save/update On Tue, Nov 27, 2012 at 11:00 AM, wrote: > Hi there, > > a long shot since you have not provided your save() method. Are you calling > super() there? Jirka, yes I am, but it's only been modifie

Re: Confused about model save/update

2012-11-26 Thread Lachlan Musicman
t; -Original Message- > From: Lachlan Musicman > Sender: django-users@googlegroups.com > Date: Tue, 27 Nov 2012 10:14:03 > To: > Reply-To: django-users@googlegroups.com > Subject: Confused about model save/update > > Hi > > Sorry about the last email -

Re: Confused about model save/update

2012-11-26 Thread jirka . vejrazka
Subject: Confused about model save/update Hi Sorry about the last email - fat fingered it. For some reason I can't get the model.save() method to actually save the data I want it to. I have tried using both save() and save(force_update=True) without any joy. I have the following model:

Confused about model save/update

2012-11-26 Thread Lachlan Musicman
Hi Sorry about the last email - fat fingered it. For some reason I can't get the model.save() method to actually save the data I want it to. I have tried using both save() and save(force_update=True) without any joy. I have the following model: class Applicant(model.Models): ... successful = Nu

Confused about model save/update

2012-11-26 Thread Lachlan Musicman
Hi I have the following model: class Applicant(model.Models): ... successful = NullBooleanField() ... def mark_successful(self): self.successful = 0 self.last_change_by = request.user self.save(force_update=True) -- ...we look at the present day through a rear-view mirror. This is somet