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

Just giving it a try and giving up: Django==1.8.1 django-nested-inlines/nested_inlines/admin.py", line 16, in class NestedModelAdmin(ModelAdmin): django-nested-inlines/nested_inlines/admin.py", line 124, in NestedModelAdmin @transaction.commit_on_success AttributeError: 'module' object has no attribute 'commit_on_success' This happened...

I am using Django 1.8.1 Models: class Profile(models.Model): charge_by = models.CharField(max_length=16, choices=CHARGE_BY_CHOICES, blank=False, null=False) valid_from = models.DateTimeField(blank=True, null=True) valid_to = models.DateTimeField(blank=True, null=True) class Slot(models.Model): profile = models.ForeignKey(Profile) start_time = models.TimeField()...

Currently, mixing Nested(Stacked|Tabular)Admin with Generic(Stacked|Tabular)Admin is not working. IMO, this is a critical feature.

Hi, I'm trying to use nested_inlines and read that the bug, that the third inline is not shown was already fixed. But still I have the same problems. I'm using...

I noticed that subclasses of NestedModelAdmin were ignoring custom forms which had been set using 'form = MyForm' in the class definition. This change now allows custom forms to be...

Could you modify it somehow that running installation with PIP does not require sudo. (Mac OS X)

Added MANIFEST.in so that pip install will work without -e