Last active
September 6, 2022 12:40
-
-
Save maxwellcc/0d3aadf44997c0208043395db270bdf3 to your computer and use it in GitHub Desktop.
Campo requerido condicionado no Django
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 characters
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
Utilizando