Re: Custom form validation request or user-based

2009-09-02 Thread Daniel Roseman
On Sep 2, 10:59 am, Matthias Kestenholz wrote: > On Wed, Sep 2, 2009 at 10:38 AM, Enrico > > Sartorello wrote: > >> if you need this only for the administration site you'd hvae other > >> hooks that you could override. Either take a look at the documentation > >> or at django/contrib/admin/option

Re: Custom form validation request or user-based

2009-09-02 Thread Matthias Kestenholz
On Wed, Sep 2, 2009 at 10:38 AM, Enrico Sartorello wrote: >> if you need this only for the administration site you'd hvae other >> hooks that you could override. Either take a look at the documentation >> or at django/contrib/admin/options.py >> > > If you mean overriding the ModelAdmin.form objec

Re: Custom form validation request or user-based

2009-09-02 Thread Enrico Sartorello
On Wed, Sep 2, 2009 at 10:25 AM, Matthias Kestenholz wrote: > > On Wed, Sep 2, 2009 at 9:15 AM, Enrico > Sartorello wrote: > > Up. > > > > Already? > > Yes, cause it seemed to me that a message buried by other 30 messages was about to be left unanswered :-) > > > > > On Tue, Sep 1, 2009 at 11:

Re: Custom form validation request or user-based

2009-09-02 Thread Matthias Kestenholz
On Wed, Sep 2, 2009 at 9:15 AM, Enrico Sartorello wrote: > Up. > Already? > On Tue, Sep 1, 2009 at 11:06 AM, Enrico Sartorello > wrote: >> >> Wait a moment: this solution doesn't solve my problem. >> Remember that the form I need has to be used on the admin site, so I can't >> deal with it dir

Re: Custom form validation request or user-based

2009-09-02 Thread Enrico Sartorello
Up. On Tue, Sep 1, 2009 at 11:06 AM, Enrico Sartorello < enrico.sartore...@gmail.com> wrote: > Wait a moment: this solution doesn't solve my problem. > Remember that the form I need has to be used on the admin site, so I can't > deal with it directly (in fact, I can't instantiate it and provide >

Re: Custom form validation request or user-based

2009-09-01 Thread Enrico Sartorello
Wait a moment: this solution doesn't solve my problem. Remember that the form I need has to be used on the admin site, so I can't deal with it directly (in fact, I can't instantiate it and provide additional arguments). Are there any other way to accomplish that? On Tue, Sep 1, 2009 at 10:48 AM,

Re: Custom form validation request or user-based

2009-09-01 Thread Enrico Sartorello
Thank you very much, your solution is simple and efficient :-) On Mon, Aug 31, 2009 at 10:57 PM, Matthias Kestenholz < matthias.kestenh...@gmail.com> wrote: > > On Fri, Aug 28, 2009 at 10:34 AM, Enrico > Sartorello wrote: > > Hi, > > i'm developing a Django application where i need to differentia

Re: Custom form validation request or user-based

2009-08-31 Thread Matthias Kestenholz
On Fri, Aug 28, 2009 at 10:34 AM, Enrico Sartorello wrote: > Hi, > i'm developing a Django application where i need to differentiate the > validation of an admin-site model form between different users: some user > must respect some particular restrictions (imposed via "clean_*" methods) > while o

Re: Custom form validation request or user-based

2009-08-31 Thread Enrico Sartorello
Up. On Fri, Aug 28, 2009 at 10:34 AM, Enrico Sartorello < enrico.sartore...@gmail.com> wrote: > Hi, > i'm developing a Django application where i need to differentiate the > validation of an admin-site model form between different users: some user > must respect some particular restrictions (impo

Custom form validation request or user-based

2009-08-28 Thread Enrico Sartorello
Hi, i'm developing a Django application where i need to differentiate the validation of an admin-site model form between different users: some user must respect some particular restrictions (imposed via "clean_*" methods) while others should do what they want without them. The problem arises becau