Last active
September 6, 2022 12:40
-
-
Save maxwellcc/0d3aadf44997c0208043395db270bdf3 to your computer and use it in GitHub Desktop.
Revisions
-
maxwellcc revised this gist
May 27, 2020 . No changes.There are no files selected for viewing
-
maxwellcc created this gist
May 27, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,21 @@ class ArticleForm(forms.ModelForm): brief_summary = forms.CharField( widget=TinyMCE( attrs={ 'cols': 80, 'rows': 50 } ) ) class Meta: model = Article fields = () def clean(self): data = self.cleaned_data highlighted_article = data.get('highlighted_article') image = data.get('image') if highlighted_article and not image: raise forms.ValidationError(_('Provide an image for highlighted article.'))