Re: Authorization workflow model

2011-09-07 Thread Mario8k
On 6 sep, 06:31, Julien Castets wrote: > Hi, > > I faced to the same problem than you a few weeks ago, and I found this > :https://github.com/dominno/django-moderation#readme > It seems to be what you're searching. > This reusable app seems to work for me. I will try it. Thanks. > Julien Caste

Re: Authorization workflow model

2011-09-07 Thread Mario8k
On 6 sep, 00:55, Mike Dewhirst wrote: > On 6/09/2011 5:46am, Mario8k wrote: > > > Hello, > > > Does anyone knows some solution (reusable app, snippet or any idea) to > > model an authorization workflow of data? > > > That is... supose that a user have restricted some model field, ie, > > cannot

Re: Authorization workflow model

2011-09-07 Thread Mario8k
On 5 sep, 17:27, Shawn Milochik wrote: > You could use a model with three fields: >     A generic foreign key to the instance to be modified. >     A char field containing the fieldname on that instance. >     The new value. > > Of course you'd need another field to store the user (assuming the

Re: Authorization workflow model

2011-09-06 Thread Julien Castets
Hi, I faced to the same problem than you a few weeks ago, and I found this : https://github.com/dominno/django-moderation#readme It seems to be what you're searching. On Tue, Sep 6, 2011 at 5:55 AM, Mike Dewhirst wrote: > On 6/09/2011 5:46am, Mario8k wrote: >> >> Hello, >> >> Does anyone knows

Re: Authorization workflow model

2011-09-05 Thread Mike Dewhirst
On 6/09/2011 5:46am, Mario8k wrote: Hello, Does anyone knows some solution (reusable app, snippet or any idea) to model an authorization workflow of data? That is... supose that a user have restricted some model field, ie, cannot edit directly this field. And now supose that he could request to

Re: Authorization workflow model

2011-09-05 Thread Shawn Milochik
You could use a model with three fields: A generic foreign key to the instance to be modified. A char field containing the fieldname on that instance. The new value. Of course you'd need another field to store the user (assuming the person making the authorization will base their decis

Authorization workflow model

2011-09-05 Thread Mario8k
Hello, Does anyone knows some solution (reusable app, snippet or any idea) to model an authorization workflow of data? That is... supose that a user have restricted some model field, ie, cannot edit directly this field. And now supose that he could request to change that field, seeing the real c