django-permissions is a pluggable django app that provides per-object permissions for Django based on roles

learn more… | top users | synonyms

0
votes
1answer
20 views

Django read only/view permission on models + row level permission

I am making a photo sharing application using Django Framework. I am stuck with 2 problems 1) The user who has uploaded photo can only edit that photo. Other users cannot edit that photo. But can ...
0
votes
2answers
18 views

Django Models Create a Coustom Query

I am trying to get all the post in a thread before or on a certain time. So how do I get Django to allow me the privilege to enter my own queries? This is the closes I could come using Django's model ...
0
votes
1answer
35 views

Django model permissions not picked up on admin

I've added permission to my model and I would like to create a group in admin that uses this permission. The problem is that the new permission is not listed in the permissions list. is there ...
0
votes
2answers
57 views

how to create django groups and handle permission dynamically

I am using django-userena application to handle user-registration, user-profile and log-in. Now I'm writing an application where - A user can create a course(course is like a profile where we store ...
0
votes
0answers
22 views

Django built in User table alter

I want to alter the built-in User table that comes with django activating admin mode.I heard somewhere that it cannot be altered. And someone suggested to not use the user-table.So if I create a user ...
0
votes
1answer
30 views

Django Foreign Key to Permission

class Application(models.Model): name = models.CharField(max_length=100) icon_url = models.CharField(max_length=100) app_url = models.CharField(max_length=200) I would like to add ...
0
votes
1answer
38 views

Django permission advice

I am at a crossroad actually in my Django 1.5 project and need some community advice before turning right or left. Here are my models Article Model class Article(models.Model): title = ...
0
votes
1answer
34 views

How can I get all users an object has specific permissions to in django guardian?

There is from guardian.shortcuts import get_objects_for_user But what about from guardian.shortcuts import get_users_for_object Thanks.
1
vote
0answers
117 views

Customize user's admin panel permission only to read(not delete,edit or add)

I want a end-user to use admin-panel to see the obejcts created, but i dont want him to add-delete or edit any object created. But in django admin panel user settings, only permissions are add, delete ...
0
votes
2answers
145 views

Django prefetch_related and many to many to many relation

I have these models: class Permission(models.Model): name = models.CharField(u'Name', max_length=100) codename = models.CharField(u'Code name', max_length=100) class Role(models.Model): ...
2
votes
2answers
335 views

How can I use Django permissions without defining a content type or model?

I'd like to use a permissions based system to restrict certain actions within my Django application. These actions need not be related to a particular model (e.g. access to sections in the ...
0
votes
1answer
69 views

How to set privileges for a user in Django (without using admin)?

I am new to Django and I wanted to set privileges without using admin from my templates.
0
votes
0answers
153 views

Django admin permissions

I need to develop permission system for Django based on the varification of some fields of some models. I need to check 3 base object permissions: add, change, delete but with additional logic. And ...
0
votes
1answer
55 views

Inheriting group permissions in Django UserProfile models

Suppose I have a project where I know in advance that I will only have three user groups. Can I define them in advance inheriting from a GroupParent and then add a field to my UserProfile with these ...
0
votes
0answers
41 views

Design Patterns - When to create user groups django

Bit of a design question: I have a site where there are a few different views depending on each user's status - i will explain: A user can create an object, so should be able to view it and update ...
0
votes
1answer
89 views

Better to use 3rd Party Row-Level Permission App or to Filter Query Results in a Django View?

I am writing a Django app that involves the creation of documents. I have a few requirements: Check to see if the user is able to view any documents at all. If the user is allowed to view documents, ...
0
votes
1answer
174 views

Django-guardian - where to assign default permission on object creation

I am starting an app that has a complex permission structure that will inevitably be managed by the users themselves. I have the following permissions in the model: class Meta: permissions = ( ...
1
vote
0answers
159 views

Create post-forms such as craigslist on my Django powered website

I'm creating a marketplace website such as Craigslist. I'd like to make "post-forms" for users to post their own product information (by uploading photos, adding forms (name, price,condition,,etc.)) ...
0
votes
1answer
195 views

Extend django Groups and Permissions

I've been searching Google and Stackoverflow for the last 3 days now and couldn't find anything similar. I'd like to extend or use the django groups and permissions. Let's say we got some Projects ...
0
votes
1answer
51 views

enforce security (permissions) on django comments

I'm using the standard django.contrib.comments app. However, for my app i need to enforce more granular permissions on posting and viewing comments. For instance, i only want certain people to view ...
1
vote
2answers
75 views

Add users to a group by emails through a view (allow comma separation for mulitple)

I would like to be able to add users in Django to a user-created group through a view and a template form. Creating the groups is easy, I just am having trouble creating a way to add bulk users (like ...
1
vote
0answers
59 views

Django admin actions - Override actions not found

I need your help guys, i have some models: class VerificableAdmin(admin.ModelAdmin): def get_actions(self, request): actions = super(VerificableAdmin, self).get_actions(request) ...
0
votes
1answer
233 views

User groups and permissions

I need to implement user rights for user groups (pretty similar to facebook groups). For example, each group can have members with rights like: can_post, can_delete, can_ban, etc. Of course, one user ...
0
votes
1answer
89 views

Migrate user groups and permissions in Django?

I've built an application that I want to move from my development server to my production server. In this application I have defined 3 custom groups in auth.group and each of those have specific ...
0
votes
1answer
152 views

How do I define default permissions for users in Django Guardian?

When I create a user in Django, he has no permissions: In [7]: u = User.objects.create(username='aoeu') In [12]: u.user_permissions.all() Out[12]: [] I want some permissions to be set by default ...
0
votes
4answers
730 views

row level permissions in django

Is there a way to do row level permissions in django? I thought there wasn't but just noticed this in the docs: Permissions can be set not only per type of object, but also per specific object ...
1
vote
1answer
42 views

How to add a button for password request in django login?

In my django App on the login page i want to have a request password button which functions like, when this button is clicked I get a request from the user per email to provide that user a password ...
0
votes
1answer
208 views

Django, using/designing a row-level permission system when we have different roles [closed]

I'm developing a Learning Management System. The system has several Actors, like Student, Tutors, Admin, Dean etc. Now, I need a permission system that can handle different Roles (Students can add ...
0
votes
1answer
440 views

Django admin - giving users access to specific objects/fields?

I need to make an "owners" login for the admin. Say we have this model structure: class Product(models.Model): owner = models.ManyToManyField(User) name = models.CharField(max_length=255) ...
1
vote
2answers
407 views

Django Groups and Permissions. Extending Groups to have a FK?

I'm working on a product that allows different schools to administer their content online. Part of this involves setting up a role based access control logic which I've written myself. Essentially, ...
7
votes
1answer
976 views

django-object-permissions Vs django-guardian Vs django-authority

I've found 3 row-level permission solutions for Django 1.2+ django-object-permissions django-guardian django-authority Could someone tell if there is any recommended more than the others, what are ...
2
votes
2answers
249 views

django-guardian example source code

Can anyone suggest a good open source app that uses django-guardian? I'm not having trouble understanding the API, but I'd love to see an example to get a feel for implementation best practice ...
1
vote
1answer
364 views

Add object level permission to generic view

The situation is pretty simple: I'm writing a multi-user blog system. The system should prevent non-owner to edit or delete a blog post. In my view I use generic view. class ...
1
vote
1answer
176 views

Invalid Literal error when adding a user permission to a Django user object

I've got a model defined in my Django app foo which looks like this: class Bar(models.Model): class Meta: permissions = ( ("view_bar", "Can view bars"), ) I've run ...
1
vote
1answer
264 views

can't change user permissions during unittest in django

I've finally decided to make some tests for my apps but I'm stuck on testing if a user can change another user (depends on the type of the user -- I use django-rules to be able to do logical ...
0
votes
1answer
217 views

How to limit access to grappelli filebrowser using django auth permissions?

I need to restrict user access to filebrowser using permissions. For example, only users with permission "can_upload_files" should be able to see Filebrowser in my custom dashboard. Is this possible? ...
2
votes
1answer
210 views

django - comparing django permissions and using django rules

currently I am looking implementing access control in Django. I've read about the built-in permission, but it does not takes care per object basis. For example, I want permissions like "Only the ...
2
votes
1answer
128 views

Django - Showing different templates to admins

In Django what's the best way to implement templates with extra functionality for users with 'admin' permissions. I'm not sure if I should create a set of completely different views specific for ...
1
vote
1answer
112 views

Does Django's permission system give advantages with custom Access Levels for a community webapp?

Django permissions are great if you need to let someone access the admin and restrict what they can do. But what if I want to use a similar functionality in the frontend of an application? Example: ...
2
votes
2answers
223 views

How to show permissions to add or change a Django model in Group or user permission list on Admin site?

I am able to run a Django Admin site and when I login as the SuperUser I'm able to modify my model as well. This part works perfectly. When I login as a user that is NOT a super user, the user does ...
4
votes
2answers
1k views

Django permissions

I would love to have more granular permission in my Django project, but can't decide what app to use. What I have is something like: class Item(models.Model): name = ...
2
votes
1answer
746 views

object-level permissions django

How do you ensure that a User can only edit objects they've created? What's the best way to set this up? I'm using django-rest-framework and wondering if there's a way I can restrict users from ...
2
votes
1answer
355 views

What is the best app for row level permissions in Django?

What is the best app for row level permissions in Django? There are many of them at http://djangopackages.com/grids/g/perms/, but how to choose more promising one?
4
votes
2answers
968 views

How to add custom permission to the User model in django?

in django by default when syncdb is run with django.contrib.auth installed, it creates default permissions on each model... like foo.can_change , foo.can_delete and foo.can_add. To add custom ...
0
votes
1answer
111 views

How are permissions in Django created?

The following throws a DoesNotExist: exception: from django.contrib.auth.models import Permission Permission.objects.get(codename='add_eventmanager') Should I create this permission manually ?
1
vote
1answer
99 views

Django-guardian on DB with shared (non-exclusive) access

I am developing a Django app being a Web frontend to some Oracle database with another local DB keeping app's data such as Guardian permissions. The problem is that it can be modified from different ...
4
votes
4answers
618 views

How to make group permissions work in Django-nonrel for Google App Engine

I'm trying to get role-based permissions working for django-nonrel for GAE. Out of the box, it didn't seem to work, probably because of the implicit many-to-many relationship between Users and ...
4
votes
2answers
745 views

Django admin - change permissions list

Is there any possibility to change permissions list in user edit page? I don't wan't to show all of permissions for example admin log entry or auth group etc. How can I modify a main queryset to ...
0
votes
1answer
228 views

Django user-specific files (browse, download)

I have a situation where I have a Django app where users sign up for an account. The users generate a bunch of Excel files each month. These files are currently simply files generated on the server ...
0
votes
3answers
231 views

How to create a permissions table independent of the user permissions in Django?

I want to create a permission table that takes django-users and another table as its foreign key . And then gives permissions to it . What should be there in models.py ? The doubt can be put across ...

1 2