Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7550359
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T10:11:31+00:00 2026-05-30T10:11:31+00:00

I am trying to validate a User Profiling form in django and I can’t.

  • 0

I am trying to validate a User Profiling form in django and I can’t. It seems that there is something wrong with forms.dateField(). It does not validate (ie. is_valid() return false)

this is my forms dateField entry:
date_of_birth = forms.DateField(label=u'date of birth', input_formats='%d/%m/%Y', required=False, widget=forms.DateInput(format = '%d/%m/%Y'))

I noticed that request.POST.get('date_of_birth', '') returns the correct date (ie. the date I have typed in the html form field).

I also noticed that in this function:

def clean_date_of_birth(self):
    date = self.cleaned_data['date_of_birth']

date object is always None.

What am I doing wrong?

EDIT:

This is what I am trying to enter:
29/07/1974 (July 29th, 1974)

This is the output of ‘submit’ (various requests)

29/07/1974
profile form is *NOT* valid
[23/Feb/2012 12:16:27] "POST /profile/chris/ HTTP/1.1" 200 16289

29/7/1974
profile form is *NOT* valid
[23/Feb/2012 12:16:33] "POST /profile/chris/ HTTP/1.1" 200 16289

1974-07-29
profile form is *NOT* valid
[23/Feb/2012 12:18:15] "POST /profile/chris/ HTTP/1.1" 200 16289

This is my template

    <div class="input_area">
        <form id="profile_form" method="post" action="/profile/{{ user.username }}/">{% csrf_token %}
            {{ form.as_p }}
            <input type="submit" id="submit" value="save" class="submitButton idle" style="width:70px" />
        </form>
    </div>

this is my views.py

def profile(request, username):
    form = ProfileForm(request.POST)
    print request.POST.get('date_of_birth', 'None')
    try:
        user = User.objects.get(username=username)
    except User.DoesNotExist:
        raise Http404(u'User not Found')
    if form.is_valid():
        print 'profile form is valid'
    else:
        print 'profile form is *NOT* valid'

and finally this is my forms.py (do not use clean_data functions at the moment)

class ProfileForm(forms.Form):

    tz = []
    timezones = Timezone.objects.all()
    for timezone in timezones:
        val = str(timezone.hour)
        v = val.split(':')
        tuple = (timezone.id, '('+timezone.sign+''+v[0]+':'+v[1]+') '+timezone.name)
        tz.append(tuple)

    sex = [('male','male'),('female', 'female'),('unknown', 'prefer not to say')]
    real_name = forms.CharField(label=u'real name', widget=forms.TextInput, required=False)
    date_of_birth = forms.DateField(label=u'date of birth', input_formats='%d/%m/%Y', required=False, widget=forms.DateInput(format = '%d/%m/%Y'))
    pp_email = forms.EmailField(label=u'Paypal Email', widget=forms.TextInput, required=False)
    gender = forms.ChoiceField(label=u'sex', choices=sex, widget=forms.Select(), required=False)
    timezone = forms.ChoiceField(label=u'time zone', choices=tz, widget=forms.Select())
    address = forms.CharField(label=u'street address', widget=forms.Textarea, required=False)
    postal  = forms.CharField(label=u'postal code', widget=forms.TextInput, required=False)
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T10:11:33+00:00Added an answer on May 30, 2026 at 10:11 am

    input formats in DateField must be list or tuple https://docs.djangoproject.com/en/dev/ref/forms/fields/#django.forms.DateField.input_formats

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to validate a form, such that if IP of user (
I am trying to validate a form, to make sure that the user inputs
I'm trying to write a regular expression that will validate that user input is
I'm trying to validate a user's windows credentials on a computer that's not joined
I'm trying to validate that the input a user gives my program via gets
I am trying to validate form data from server-side. my interest is that the
I am trying to validate user input from a form before submit but it
I am trying to validate fields so user can't have entered data with empty
I'm trying to validate a textarea so a user can't add a new empty
Hi I'm trying to validate the option that the user check and if they

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.