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 9104517
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T01:53:16+00:00 2026-06-17T01:53:16+00:00

I have a Django page with a form. I have some view code which

  • 0

I have a Django page with a form. I have some view code which deals with the form as normal but prepopulates the form with initial data from the a user’s session if available. This is so that when a user returns to this form they see previously selected options (yes, the form is quite extensive).

My views,py:

def myView(request):   
    ...
    form = ProjectInfoForm(request.POST or None)
    if form.is_valid():
        # process form, including a redirect
        ...

    # if there is form data in the session, let's use that
    # to initaliaze our from with data
    if key in request.session:
        form = ProjectInfoForm(
            initial={
                 'model': request.session.get('model'),
                 ...
            }
        )
    return render_to_response(template_name, {
        ...
    }, RequestContext(request))

Problem is: if I load the session data then the page does not display any error messages. The form does fail validation, I am just not getting the any output. Is there some conflict here with initial?

Any help would be much appreciated.

  • 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-06-17T01:53:18+00:00Added an answer on June 17, 2026 at 1:53 am

    Well, from that snippet, if the session data is found then you completely re-initialize the form: the original, validated instance, which contained the POST data and any errors, has now been disposed. Presumably you would want to only enter that second if if the request is not a POST.

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

Sidebar

Related Questions

I have a Django app with custom form fields, some of which have slow
I have a form with subject, body and file fields on some page on
I have been developing some Django app and there's some duplicated code for different
I have a view that either displays a form or a 'thank you' page
I am trying to use a textarea form entry which I have some javascript
I'm working with Django. I have an HTML page, where I do some Javascript
I have been struggling to create a django form which users can fill and
I have some strange issue with querying SQL Server from django. When I query
I have a Django form which I load dynamically to a jQuery dialog after
I have a Django form that is part of page. Lets say I have

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.