Skip to main content

Django admin classes that allow for nested inlines

Project description

Build Status

django-nested-admin is a project that makes it possible to nest admin inlines (that is, to define inlines on InlineModelAdmin classes). compatible with Django 1.4-1.9 and Python versions 2.7 and 3.4. It works with and without Grappelli. When Grappelli is not installed it adds Grappelli-like drag-and-drop sorting functionality to Django inlines.

Installation

The recommended way to install django-nested-admin is from PyPI:

pip install django-nested-admin

Alternatively, one can install a development copy of django-nested-admin from source:

pip install -e git+git://github.com/theatlantic/django-nested-admin.git#egg=django-nested-admin

If the source is already checked out, use setuptools to install:

python setup.py develop

Configuration

To use django-nested-admin in your project, "nested_admin" must be added to the INSTALLED_APPS in your settings and you must include nested_admin.urls in your django urlpatterns. django-grappelli is an optional dependency of django-nested-admin. If using Grappelli, make sure the appropriate version of Grappelli is installed for your version of Django.

# settings.py

INSTALLED_APPS = (
    # ...
    'nested_admin',
)

# urls.py

urlpatterns = patterns('',
    # ...
    url(r'^nested_admin/', include('nested_admin.urls')),
)

Example Usage

In order to use django-nested-admin, use the following classes in place of their django admin equivalents:

django.contrib.admin

nested_admin

ModelAdmin

NestedModelAdmin

InlineModelAdmin

NestedInlineModelAdmin

StackedInline

NestedStackedInline

TabularInline

NestedTabularInline

Note: for consistency with the other class names, NestedAdmin was deprecated in favor of NestedModelAdmin in 2.2.1, and will be removed in version 2.3.

# An example admin.py for a Table of Contents app

from django.contrib import admin
import nested_admin

from .models import TableOfContents, TocArticle, TocSection

class TocArticleInline(nested_admin.NestedStackedInline):
    model = TocArticle
    sortable_field_name = "position"

class TocSectionInline(nested_admin.NestedStackedInline):
    model = TocSection
    sortable_field_name = "position"
    inlines = [TocArticleInline]

class TableOfContentsAdmin(nested_admin.NestedModelAdmin):
    inlines = [TocSectionInline]

admin.site.register(TableOfContents, TableOfContentsAdmin)

License

The django code is licensed under the Simplified BSD License. View the LICENSE file under the root directory for complete license and copyright information.

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-nested-admin-2.2.2.tar.gz (66.3 kB view details)

Uploaded Source

Built Distribution

django_nested_admin-2.2.2-py2.py3-none-any.whl (78.2 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file django-nested-admin-2.2.2.tar.gz.

File metadata

File hashes

Hashes for django-nested-admin-2.2.2.tar.gz
Algorithm Hash digest
SHA256 bca99c37a7c949b4cb6e4658d7ca2a31ba04ee4370ba4f2cb89ea4a2f0bc8eb6
MD5 417e048fecdd612977fdbcb612c3b763
BLAKE2b-256 8dfaf5fb7334a38c0306846fe338c43604006d9d0b44a53c6d9b624849f5f796

See more details on using hashes here.

File details

Details for the file django_nested_admin-2.2.2-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for django_nested_admin-2.2.2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 bd170f0b5360ab2130cee06784b9effba4e2d99f88c5c3fb0b8197d70ae39fbb
MD5 8802a7dcb22f2dbc4030872ebe0d24da
BLAKE2b-256 e740bdbcbfd388792ac514b2c7cafab4841df4aae2fabc32842e9150efaa987a

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