Skip to content

Instantly share code, notes, and snippets.

@maxwellamaral
Forked from maxwellcc/model.py
Created September 6, 2022 12:40
Show Gist options
  • Save maxwellamaral/47867f481fb0732560e5b2dc525327b9 to your computer and use it in GitHub Desktop.
Save maxwellamaral/47867f481fb0732560e5b2dc525327b9 to your computer and use it in GitHub Desktop.
Campo requerido condicionado
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.'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment