Add section title to sortable model with non-sortable parent

master
blag 2020-07-22 01:50:51 -07:00
parent 616dcdfd7a
commit 7ed44fa84b
No known key found for this signature in database
GPG Key ID: 30870D32F59C5F40
1 changed files with 2 additions and 0 deletions

View File

@ -155,6 +155,8 @@ admin.site.register(Category, SortableAdmin)
admin.site.register(Project, 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: 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 ```python