Skip to main content

Django admin inlines for unrelated models

Project description

django-nonrelated-inlines

Django admin inlines for unrelated models

CircleCI PyPI

Getting started

This app allows you to create admin inlines for models that don't have an explicit foreign key relationship.

To use, subclass your inline from either NonrelatedStackedInline or NonrelatedTabularInline and add get_form_queryset and save_new_instance methods.

  • get_form_queryset(self, obj) returns all objects that should be shown in the inline formset.
  • save_new_instance(self, parent, instance) given a parent object and a new child object instance should associate the child object with the parent.

For example, let's assume we have Customer and Invoice models. Invoice objects are associated with a Customer if they share the same email address.

from nonrelated_inlines.admin import NonrelatedStackedInline


class CustomerInvoiceStackedInline(NonrelatedStackedInline):
    model = Invoice
    fields = [
        'id',
        'amount'
    ]

    def get_form_queryset(self, obj):
        return self.model.objects.filter(email=obj.email)

    def save_new_instance(self, parent, instance):
        instance.email = parent.email

When viewing an Customer instance, we fetch a queryset of all Invoice instances sharing the same email address. Similarly, when saving a new Invoice instance we make sure to set its email attribute to the same value as its parent Customer.

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-nonrelated-inlines-0.2.tar.gz (7.0 kB view details)

Uploaded Source

Built Distribution

django_nonrelated_inlines-0.2-py3-none-any.whl (8.8 kB view details)

Uploaded Python 3

File details

Details for the file django-nonrelated-inlines-0.2.tar.gz.

File metadata

File hashes

Hashes for django-nonrelated-inlines-0.2.tar.gz
Algorithm Hash digest
SHA256 e123010a3ad18b049781d6688b3ff45b2441e69fd63802bec94c37cd36c83611
MD5 23d5cefe47e33ae443a9aaea3a63f80c
BLAKE2b-256 a9634287295cdbd9e0c8b9e4b1e7c488c99f1a3553cab22040ffae7cd9329a5e

See more details on using hashes here.

File details

Details for the file django_nonrelated_inlines-0.2-py3-none-any.whl.

File metadata

File hashes

Hashes for django_nonrelated_inlines-0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 216a4513971c58568f450a2339064746624de718a946088534e86011b400ccc3
MD5 29ed5f1290ac9314bdde7ea985378356
BLAKE2b-256 9a103c71009ced6df7e88a838645149dccd28481c760e210cb9c7a78263d5f95

See more details on using hashes here.

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