add option 'hidden'. You can hide news from newsfeed (e.g. about)

This commit is contained in:
2020-09-05 16:08:14 +00:00
parent 3a72946206
commit d4d23e7ca3
6 changed files with 26 additions and 12 deletions

View File

@@ -23,7 +23,7 @@ class MyNewsForm(MyPostForm):
model = News
fields = [
'title', 'subtitle', 'tags', 'image', 'body', 'slug', 'author', 'public_date',
'is_pinned',
'is_pinned', 'is_hidden',
]
widgets = {'body': CKEditorUploadingWidget(config_name='default')}