Skip to main content

fakeinline provides enough of the methods and attributes to trick the Django Admin into displaying it when mounted as part of an inlines declaration on a ModelAdmin

Project description

Author:

Keryn Knight

Version:
0.1.1

fakeinline provides enough of the methods and attributes to trick the Django Admin into displaying it when mounted as part of an inlines declaration on a ModelAdmin. Where possible it does so without subclassing real Django classes, as should be the case with Duck Typing.

The 2 necessary subclasses are the FakeInline class itself, which must subclass InlineModelAdmin, and the model attribute, FakeModel which must subclass Model, but is unmanaged and abstract, so there is nothing touching the database.

Release

Status

master

travis_master

Why?!

The most interesting thing about the Django Admin is trying to bend it to my will. This is an example of my winning.

No really, why?

Because it’s actually nicer to be able to wedge additional things into the admin, without overriding the change_form.html template on a per-model, per-app basis.

Example usage

Here’s a simple way of putting the classic words Hello world onto a ModelAdmin:

class MyFormset(FakeFormset):
    # this probably works, but usually you'd point it at a template file.
    template = Template('{{inline_admin_formset.formset.get_data}}')

    def get_data(self, *a, **kw):
        return 'Hello world'

class MyInline(FakeInline):
    formset = MyFormSet

class MyAdmin(ModelAdmin):
    inlines = [MyInline]

Whilst a silly example, it demonstrates how one might encapsulate display data (charts, change history, etc) in a re-usable(ish) component for display on the change view.

Tests

There’s a couple in fakeinline.tests … just enough to verify it doesn’t raise an exception on GET or POST.

The license

It’s the FreeBSD. There’s should be a LICENSE file in the root of the repository, and in any archives.


Copyright (c) 2016, Keryn Knight All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

  2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.


Change history for fakeinline

0.1.1

  • Initial 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-fakeinline-0.1.1.tar.gz (10.8 kB view hashes)

Uploaded Source

Built Distribution

django_fakeinline-0.1.1-py2.py3-none-any.whl (13.1 kB view hashes)

Uploaded Python 2 Python 3

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