Skip to main content

Model item always has an owner, and login user can only see owned items.

Project description

django-admin-item-owner

Model item always has an owner, and login user can only see owned items.

Goal

  • Set item's owner to current user automatically.

Install

pip install django-admin-item-owner

Settings

INSTALLED_APPS = [
    ....
    'django_global_request',
    'item_owner',
    ...
]

MIDDLEWARE = [
    ...
    'django_global_request.middleware.GlobalRequestMiddleware',
    ...
]

Example

example/models.py

from django.db import models
from item_owner.models import ItemOwnerMixin

class Category(ItemOwnerMixin, models.Model):
    title = models.CharField(max_length=32)

class Book(ItemOwnerMixin, models.Model):
    category = models.ForeignKey(Category, on_delete=models.SET_NULL, null=True, blank=True, related_name="books")
    title = models.CharField(max_length=32)

example/admin.py

from django.contrib import admin
from django import forms
from item_owner.admin import ItemOwnerMixin
from .models import Category
from .models import Book



class BookInline(ItemOwnerMixin, admin.TabularInline):
    model = Book

class CategoryAdmin(ItemOwnerMixin, admin.ModelAdmin):
    list_display = ["title"]
    inlines = [
        BookInline,
    ]

class BookAdmin(ItemOwnerMixin, admin.ModelAdmin):
    list_display = ["title"]

admin.site.register(Category, CategoryAdmin)
admin.site.register(Book, BookAdmin)

Releases

v0.1.0 2019/12/01

  • First release.

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-admin-item-owner-0.1.0.tar.gz (2.7 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