Django 1.9 compatible admin
This commit is contained in:
parent
63c3ab2780
commit
73f7c68238
2 changed files with 4 additions and 0 deletions
|
@ -14,6 +14,7 @@ History
|
|||
* Fix selecting current menu item according to menu layout
|
||||
* Fix some issues with haystack indexes
|
||||
* Add support for moved ThumbnailOption
|
||||
* Fix Django 1.9 issues
|
||||
|
||||
0.6.3 (2015-12-22)
|
||||
++++++++++++++++++
|
||||
|
|
|
@ -168,6 +168,9 @@ class BlogConfigAdmin(BaseAppHookConfig, TranslatableAdmin):
|
|||
|
||||
@property
|
||||
def declared_fieldsets(self):
|
||||
return self.get_fieldsets(None)
|
||||
|
||||
def get_fieldsets(self, request, obj=None):
|
||||
"""
|
||||
Fieldsets configuration
|
||||
"""
|
||||
|
|
Loading…
Add table
Reference in a new issue