class ContactForm(forms.Form): subject = forms.CharField(max_length=100) message = forms.CharField() email = forms.EmailField() phone = forms.CharField(max_length=8) cc_myself = forms.BooleanField(required=False)
is there a way that, between 'email' and 'phone', at least one is required? The request contains either 'email' or 'phone', or both, but can not both be none. Is there any way to implement this logic with django newforms? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---