Re: Hello. Users, permissions, etc.

2017-02-16 Thread ludovic coues
Have you looked at that ? https://docs.djangoproject.com/en/1.10/topics/auth/default/#topic-authorization 2017-02-16 13:32 GMT+01:00 : > Good day, I faced with a problem. > Any database with the information. DB is filled with the site. It is > necessary to make several groups with different right

Hello. Users, permissions, etc.

2017-02-16 Thread lex . for . free
Good day, I faced with a problem. Any database with the information. DB is filled with the site. It is necessary to make several groups with different rights to add / edit information from site. The first logical step - to make it in the administrative part. But the right to work only in the ad

Best way to build a menu according to the users permissions

2013-09-03 Thread Lucas Ricoy
Hi, I would like to know if someone has found a "best" approach to manage django-user permissions and build an permission-based menu. I know It's doable with jquery/javascript and others, but i wouldn't like to depend on javascript to show/hide critic items. Also, a lot of {% if perms %} is not

Re: admin users permissions question

2011-02-08 Thread jean polo
On Feb 8, 5:33 pm, Andres Lucena wrote: > On Tue, Feb 8, 2011 at 5:00 PM, jean polo wrote: > > hi > > > I created some User Profile in my app. > > Each user can add some posts and now I'd like one user to be able to > > view/modify only his/her posts in the admin, and not the posts from > > other

Re: admin users permissions question

2011-02-08 Thread Andres Lucena
On Tue, Feb 8, 2011 at 5:00 PM, jean polo wrote: > hi > > I created some User Profile in my app. > Each user can add some posts and now I'd like one user to be able to > view/modify only his/her posts in the admin, and not the posts from > other users. > I have no idea about how to do this. > > An

admin users permissions question

2011-02-08 Thread jean polo
hi I created some User Profile in my app. Each user can add some posts and now I'd like one user to be able to view/modify only his/her posts in the admin, and not the posts from other users. I have no idea about how to do this. Any hint or link to a tutorial/doc would be very helpful, so far I c

Re: Users permissions

2007-02-15 Thread Jay Parlar
On 2/15/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Hello, I'm thinking about create a website using django. One of the > apps would be a news section, where everybody can publish the news > (perhaps after approval) and where the users can edit and delete their > own news, but not the oth

Re: Users permissions

2007-02-15 Thread Russell Keith-Magee
On 2/16/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Is it possible to implement this within the django admin or should I > create a specific application for this? The right solution here is to write your own application. The admin view is intended to be just that - an adminstration view.

Re: Users permissions

2007-02-15 Thread Honza Král
it's impossible at the moment, but it should be possible with the newforms-admin branch via a hook On 2/15/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Hello, I'm thinking about create a website using django. One of the > apps would be a news section, where everybody can publish the news >

Users permissions

2007-02-15 Thread aribao
Hello, I'm thinking about create a website using django. One of the apps would be a news section, where everybody can publish the news (perhaps after approval) and where the users can edit and delete their own news, but not the other users news. Is it possible to implement this within the django a