Re: Post-save hook after inline records saved?

2011-09-08 Thread Vinicius Massuchetto
On Feb 3 2010, 8:52 pm, Andy Robinson wrote: > I'm writing a bookkeeping system using Django latest code.   I would > like to make sure that when certain records are saved, changes are > made to other records.    For example, when I save a Sale model in the > admin - or programmatic code - it may

Re: Post Save

2011-08-01 Thread Daniel Corbe
Thanks already solved i use post_save for child class and works for me! On 1 August 2011 14:55, bruno desthuilliers wrote: > On 1 août, 19:17, Daniel Corbe wrote: > > Ok, halfly solved. > > What ? > > > The problem > > Which problem ? > > -- > You received this message because you are subscri

Re: Post Save

2011-08-01 Thread bruno desthuilliers
On 1 août, 19:17, Daniel Corbe wrote: > Ok, halfly solved. What ? > The problem Which problem ? -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this grou

Re: Post Save Signal the best plan?

2009-03-11 Thread Alex Gaynor
On Wed, Mar 11, 2009 at 4:47 AM, Alfonso wrote: > > Hi there, > > I've got a few tax calculations running on a custom save method within > admin which work great but I need to build in the option to override > these calculations manually. > > So I have 2 questions - is this what I'd use a post sa

Re: Post Save

2008-01-21 Thread Nathaniel Whiteinge
In the Django world (and the newspaper world), the canonical term for what you're looking for is 'slug' and Django even has a built-in slug model field [1]. If you're just using the built-in Admin, then it even has JavaScript that will create the slug based on another model field. However, if yo