Skip to main content

Subclass the Django User model to your heart's delight.

Project description

Description

This is a simple app that that helps you subclass the Django User model. It makes use of the InheritanceQuerySet provided by Django-Model-Utils to make it possible for you to create as many subclasses of the User model as you like.

It’s usually recommended to create a “user profile” model when you want to store additional information about each user. Unfortunately, this doesn’t work at all if you need multiple user models with different information in each. It’s also a bit of a pain to make sure a profile exists and get_profile() can sometimes introduce extra database queries.

Requirements and Installation

Django-User-Extension requires:

  • Django

  • Django-Model-Utils

  • setuptools or preferably distribute

Installation is as simple as:

pip install django-user-extension

Source

You can install the latest development version from the hg repository with:

pip install -e hg+http://code.db-init.com/django-user-extension

Or from a tarball with:

pip install django-user-extension==dev

Usage

Django-User-Extension provides a modified authentication ModelBackend class that resolves the correct User subclass. This will ensure that request.user represents your subclass model. Simply add this to your settings.py:

AUTHENTICATION_BACKENDS = ('user_extension.backends.SubUserModelBackend',)

Also provided is a modified admin UserAdmin class that will allow you to easily add your subclasses to the Django admin. If you try to use the default UserAdmin you’ll get an error message when add any of your custom fields to fieldsets. Make sure you also add any required fields to add_fieldsets. You can use it like this in your admin.py:

from user_extension.admin import SubUserAdmin

class CustomUserAdmin(SubUserAdmin):
    fieldsets = SubUserAdmin.fieldsets[:2] + (
        (None, {
            'fields': ('picture',)
        }),
    ) + SubUserAdmin.fieldsets[2:]
    add_fieldsets = SubUserAdmin.add_fieldsets + (
        (None, {
            'fields': ('picture',)
        }),
    )

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-user-extension-1.0.0.tar.gz (3.1 kB view details)

Uploaded Source

File details

Details for the file django-user-extension-1.0.0.tar.gz.

File metadata

File hashes

Hashes for django-user-extension-1.0.0.tar.gz
Algorithm Hash digest
SHA256 d24f43ac03db6f798c85e36b2b9218f5d0b21d9b4ccb44ab734a163671bbec2f
MD5 a9b13d3cc6d98cc32ae1280a8762a135
BLAKE2b-256 ea3840d314288ef67ad2de6e047680343c58c2309291f99fb5c68530d1e0ad29

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