A Django Admin extension that allows you to mix and reorder multiple inline classes together
Project description
Merged Inlines
Merged Inlines is a Django App that allows you to merge multiple inline models into a single form. This is particularly useful if you need to mix the orderings of multiple authors together, so your inlines in the Admin panel can look like:
inline for Poem 1
inline for Poem 2
inline for Book 1
inline for Poem 3
inline for Book 2
Instead of:
inline for Poem 1
inline for Poem 2
inline for Poem 3
inline for Book 1
inline for Book 2
Installation
Install using pip:
pip install django-merged-inlines
Quick start
Add “merged_inlines” to your INSTALLED_APPS setting:
INSTALLED_APPS = ( .... 'merged_inlines' )
In the admin.py file for the app you’re adding merged inlines to, add:
from merged_inlines.admin import MergedInlineAdmin
Instead of admin.ModelAdmin, make your Admin class a child of MergedInlineAdmin, and add your inline classes as you normally would:
class MyFirstInline(admin.TabularInline): pass class MySecondInline(admin.TabularInline): pass class MyModelAdmin(MergedInlineAdmin): inlines = [MyFirstInline,MySecondInline] admin.site.register(MyModel,MyModelAdmin)
Note that regardless of the Inline class used (TabularInline or StackedInline), Merged Inlines currently only renders as a tabular inline.
Options
merged_field_order
You can use merged_field_order in your MergedInlineAdmin class to set the order of the fields. The list/type must contain all of fields that will be editable in the admin: to exclude fields from the formset, use the builtin ModelAdmin exclude function.
class MyInline(admin.TabularInline): exclude = ('my_unwanted_field') class MyModelAdmin(MergedInlineAdmin): inlines = [MyInline] merged_field_order = ('put_this_field_first','followed_by_this_field','and_then_this_one')
merged_inline_order
This option determines what field will be used to sort your merged inline models. The shared models must both have the shared field, otherwise an Exception will be raised. If no field is specified, id will be used.
class BookInline(admin.TabularInline): model = Book class PoemInline(admin.TabularInline): model = Poem class AuthorAdmin(MergedInlineAdmin): merged_inline_order = 'year'
Version History
1.0 - Added full test coverage. Moved to Django 1.7+ compatibility, dropped compatibility with Django <1.7.
0.2 - Fixed ID ordering and js issues, thanks to @kotyy
0.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
Built Distribution
File details
Details for the file django-merged-inlines-1.0.3.tar.gz
.
File metadata
- Download URL: django-merged-inlines-1.0.3.tar.gz
- Upload date:
- Size: 11.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.23.0 CPython/3.6.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3d7fff5d8c542e09fe893cadff12e74cf155c1841fe68ba860d491d06b036939 |
|
MD5 | 76a836b7db454b54095f8c23d9cbc14d |
|
BLAKE2b-256 | a2965627ae6712108771f5f14efc08aae7c308b349c7a276b7b7043260fd6d66 |
File details
Details for the file django_merged_inlines-1.0.3-py3-none-any.whl
.
File metadata
- Download URL: django_merged_inlines-1.0.3-py3-none-any.whl
- Upload date:
- Size: 13.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.23.0 CPython/3.6.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1fb349d826d6776f830dc6704e2f6b3e9c0d17f1bd436623131c543011202948 |
|
MD5 | 8d7f1c6542d5877f7ac93a85eecac7b5 |
|
BLAKE2b-256 | 1d022f023ddc39906e59e83decc60a2de1d628ca66693bb27807ceb6ceec7c19 |