Frankie Dintino

Results 97 comments of Frankie Dintino

It looks like pip no longer supports python 3.2, hence the failing test. You might want to consider removing it from your tox environments, or at the very least removing...

The Children inlines will automatically filter so that they only include those belonging to the Parent—though if you allow adding then it is possible for the user to add new...

In your class list there I see you have inlines that have `class="grp-collapse grp-open closed open"`. How are you defining your `classes` and `inline_classes` attributes on your `NestedInlineModelAdmin` classes? Are...

Adding `sortable_field_name = 'your_order_field'` should be all that's necessary to enable sorting, and it should work for both stacked and tabular inlines. For stacked inlines, the inline header is the...

I could add that mixin, that seems useful. In our own projects that use django-nested-admin we've made position a `PositiveIntegerField` and then added this to our admin classes: ```python formfield_overrides...

I would appreciate that. Thanks!

Are you using MySQL by any chance? What version?

I asked about the database backend because this can be avoided in Postgres with deferrable unique constraints. I had mistakenly thought this was also available in sqlite, but that doesn't...

Actually, it occurs to me that django doesn't actually store uniqueness constraints in the database, but enforces uniqueness in code. It might be possible to override `BaseModelFormSet.validate_unique` to make it...

There isn't enough information here for me to help you. Where is the link html being generated? Is the return value wrapped with `mark_safe`?