Skip to content

Instantly share code, notes, and snippets.

@maxwellcc
Last active September 6, 2022 12:40
Show Gist options
  • Select an option

  • Save maxwellcc/0d3aadf44997c0208043395db270bdf3 to your computer and use it in GitHub Desktop.

Select an option

Save maxwellcc/0d3aadf44997c0208043395db270bdf3 to your computer and use it in GitHub Desktop.
Campo requerido condicionado no Django
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.'))
@maxwellcc

Copy link
Copy Markdown
Author

Utilizando

  1. Django 3.0.5
  2. Python 3.8

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment