Git Product home page Git Product logo

django-nonrelated-inlines's Introduction

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 NonrelatedStackedInline 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.

django-nonrelated-inlines's People

Contributors

bhomnick avatar meocong avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.