Skip to main content

django account helper utils for `django.contrib.auth`

Project description

django account helper utils for django.contrib.auth

Requirement

  • Django

Install

pip install django_acocunt_helper

Config

  1. check your settings.py, make sure django.contrib.auth in INSTALLED_APPS.

  2. add account_helper.middleware.CurrentUserMiddleware

config finish.

How to use

set current user as default value

update your model like this:

before

owner = models.ForeignKey(settings.AUTH_USER_MODEL)

after

from account_helper.middleware import get_current_user

# ... fields definition...

owner = models.ForeignKey(settings.AUTH_USER_MODEL, default=get_current_user)

set current user id as default value

update your model like this:

before

owner = models.IntegerField('user id')

after

from account_helper.middleware import get_current_user_id

# ... fields definition...

owner = models.IntegerField('user id',default=get_current_user_id)

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-account-helper-0.1.3.tar.gz (1.6 kB view hashes)

Uploaded Source

Supported by

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