Django admin classes that allow for nested inlines
Project description
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 |
NestedAdmin |
InlineModelAdmin |
NestedInlineModelAdmin |
StackedInline |
NestedStackedInline |
# 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.NestedAdmin):
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file django-nested-admin-2.1.12.tar.gz
.
File metadata
- Download URL: django-nested-admin-2.1.12.tar.gz
- Upload date:
- Size: 60.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | acf7d748b801917ace0099087c4bd3660f36dc9b3c0143712c8ab9ae0a09ea7e |
|
MD5 | f493d1c8f9fa766e00edcaa14e47e9e6 |
|
BLAKE2b-256 | 9a072fcf74f3a8c5fa339bfaf9572ff7f92bc96e88dbbcb6d0d0aaef8cf91ea3 |
File details
Details for the file django_nested_admin-2.1.12-py2.py3-none-any.whl
.
File metadata
- Download URL: django_nested_admin-2.1.12-py2.py3-none-any.whl
- Upload date:
- Size: 68.7 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bc35229e98981fe106b76dfb570631e88d3f115a89af368fd74e5377cc7df752 |
|
MD5 | 2e9dab0f19e19bb40a8daf61f3e830c8 |
|
BLAKE2b-256 | 1eb431fdc0d48c79fbb500a6df1ab4638129f712df6a79365edbffceaabc14d0 |