Skip to content

Commit

Permalink
Add missing subtitle field in the admin
Browse files Browse the repository at this point in the history
  • Loading branch information
yakky committed May 5, 2018
1 parent 2486fdd commit 3a98d05
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion djangocms_blog/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,10 @@ class PostAdmin(PlaceholderAdminMixin, FrontendEditableAdminMixin,
actions += ['enable_liveblog', 'disable_liveblog']
_fieldsets = [
(None, {
'fields': [['title', 'categories', 'publish', 'app_config']]
'fields': [
['title', 'subtitle', 'publish'],
['categories', 'app_config']
]
}),
(None, {
'fields': [[]]
Expand Down

0 comments on commit 3a98d05

Please sign in to comment.