django-nested-inlines icon indicating copy to clipboard operation
django-nested-inlines copied to clipboard

Adds nested inline support in Django admin

Results 18 django-nested-inlines issues
Sort by recently updated
recently updated
newest added

After installing your app, I get a 404 for http://(mywebsite)/media/admin/js/nested.js I also get about 12 of these messages in the js console: TypeError: Object # has no method 'tabularFormset' Could...

After upgrading to Django 1.6 I get a "MultiValueDictKeyError" after trying to add or delete a nested-inline object.

I use django 1.3 and i had to change from django.utils import six by import six in nested_inlines/helpers.py file

Suppose I have a class: ``` python class CAdmin(NestedTabularInline): extra = 1 class BAdmin(NestedStackedInline): inlines = [CAdmin] extra = 1 class AAdmin(NestedModelAdmin): inlines = [BAdmin] admin.site.register(AModel . AAdmin) ``` Now...

Adding this package to PyPI would make it easier to discover and install.

Thank you for this app. I would just like to suggest to make a Grappelli comptaible version.

Could you create a release in pypi? Congratulations!!