Add section title to sortable model with non-sortable parent

This commit is contained in:
blag
2020-07-22 01:50:51 -07:00
parent 616dcdfd7a
commit 7ed44fa84b
+2
View File
@@ -155,6 +155,8 @@ admin.site.register(Category, SortableAdmin)
admin.site.register(Project, SortableAdmin)
```
#### Sortable Model With Non-Sortable Parent
Sometimes you might have a parent model that is not sortable, but has child models that are. In that case define your models and admin options as such:
```python