Skip to main content

Implementation of permissions not related to models

Project description

# Django Global Permissions

[![Build Status](https://travis-ci.org/eduardo-matos/django-global-permissions.svg?branch=master)](https://travis-ci.org/eduardo-matos/django-global-permissions)
Implementation of permissions not related to models

# Quickstart

Install django-global-permissions:

```
pip install django-global-permissions
```

Add to the installed apps:

```python
INSTALLED_APPS += (global_permissions,)
```

If you want co create a permission in the admin interface, then head to
the Global Permissions section, then add a permission. Pick a name (which
should be a human readable description), a code name (which will be used throughout
the your apps), then save it.

Then open the user edit page. Now you can choose the permission you've just created.

Otherwise if you want to create a permission programmatically, just import the GlobalPermission
model and create a new permission choosing a name and a codename.

```python
from global_permissions.models import GlobalPermission

GlobalPermission.objects.create(name='My Perm', codename='my_perm')
```

## Putting into action!

Lets say you want to verify if the logged in user can do something (based on a permission).
In your view, you can do the following

```python
if user.has_perm('global_permissions.my_perm_codename'):
pass # do something intersting!
else:
pass # ops, you're not allowed to do that. Sorry ¯\_(ツ)_/¯
```

If you cant to verify a permission inside some template, you can do this way:

```htmldjango
{% if perms.global_permissions.my_perm_codename %}
Yay!
{% else %}
Not so lucky...
{% endif %}
```

## Upgrade

If you're upgrading from version 0.1.x to version 0.2.x, you have to manually update the old contentttype model attribute to the new one. The following script may do the trick:

```python
from django.contrib.contenttypes.models import ContentType

ContentType.objects.filter(name='global_permission', app_label='global_permissions').update(model='globalpermission')
```

This change is required on django 1.7+ to avoid a prompt asking if you wanna remove staled content types after running a migration.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-global-permissions-0.2.1.tar.gz (5.0 kB view details)

Uploaded Source

File details

Details for the file django-global-permissions-0.2.1.tar.gz.

File metadata

File hashes

Hashes for django-global-permissions-0.2.1.tar.gz
Algorithm Hash digest
SHA256 959814fd63b7aa92f43b0ea8f01c96ea0395263e297caf4f4f79efae32b14608
MD5 420ab44eb5af06764b878b55de5f2bda
BLAKE2b-256 36d9fed94e310b2a3372772fbb405fd388d5a9c082d92cc87cf71f111f85f1ba

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page