| 17 | | 1. An `OrderField` as suggested here: http://groups.google.com/group/django-developers/browse_thread/thread/480662576c49edd/3aca77d981804528. |
| 18 | | 2. Add `django.forms.formset.empty_form` method. |
| 19 | | 3. Admin Inline updates, including |
| 20 | | * Dynamically add new inline on page |
| 21 | | * Drag and drop inline re-ordering if `order_field` provided on `ModelAdmin` class. |
| 22 | | 4. Selector Inlines |
| 23 | | 5. !ForeignKey autocomplete |
| 24 | | 6. !ManyToMany autocomplete |
| | 17 | * An `OrderingField` as suggested here: http://groups.google.com/group/django-developers/browse_thread/thread/480662576c49edd/3aca77d981804528. |
| | 18 | * Add `django.forms.formset.empty_form` method. |
| | 19 | * Admin Inline updates, including |
| | 20 | * Dynamically add new inline on page (depends on `empty_form`) |
| | 21 | * Drag and drop inline re-ordering if `order_field` provided on `ModelAdmin` class. (depends on `OrderingField`) |
| | 22 | * Selector Inlines (with dynamic adds and drag and drop) |
| | 23 | * !ForeignKey autocomplete |
| | 24 | * !ManyToMany autocomplete |