com: use MarkdownInput on news

This commit is contained in:
Antoine Bartuccio 2018-12-20 15:09:44 +01:00
parent d2021ecf7e
commit 24dd258d0a
1 changed files with 6 additions and 1 deletions

View File

@ -197,7 +197,12 @@ class NewsForm(forms.ModelForm):
class Meta:
model = News
fields = ["type", "title", "club", "summary", "content", "author"]
widgets = {"author": forms.HiddenInput, "type": forms.RadioSelect}
widgets = {
"author": forms.HiddenInput,
"type": forms.RadioSelect,
"summary": MarkdownInput,
"content": MarkdownInput,
}
start_date = forms.DateTimeField(
["%Y-%m-%d %H:%M:%S"],