Re: Overriding Model's save method: error propagation

2009-01-14 Thread Markus T.
if x > y: should read except: of course... --~--~-~--~~~---~--~~ 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 group,

Re: Overriding Model's save method: error propagation

2009-01-14 Thread Markus T.
David, for me, these two links did the trick: http://docs.djangoproject.com/en/dev/ref/contrib/admin/#adding-custom-validation-to-the-admin http://docs.djangoproject.com/en/dev/ref/forms/validation/#ref-forms-validation However, validation as described in the Django docs does not happen in the

Re: Overriding Model's save method: error propagation

2009-01-14 Thread Markus
David, I've been looking for a solution for this problem, too. Maybe this helps - I'm yet to try this out: http://docs.djangoproject.com/en/dev/ref/contrib/admin/#adding-custom-validation-to-the-admin Things seem to be underway though: http://code.djangoproject.com/ticket/6845

Overriding Model's save method: error propagation

2009-01-05 Thread David Fokkema
Hi group, I have overridden a Model's save() method. In my method, I update another database on another server with a simple password. My question is: when that database is somehow not available and I have catched an exception, how do I propagate that to the django-admin model form I was