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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T07:41:31+00:00 2026-05-27T07:41:31+00:00

I have pretty complicated form items ;) Here’s my view for serving my form:

  • 0

I have pretty complicated form items 😉

Here’s my view for serving my form:

def view(request):
    if request.method == "POST":
        form = forms.ProfileEditForm(request.POST)
    else:
        form = forms.ProfileEditForm(initial={'country': request.user.profile.country})

    return direct_to_template(request, "name/of/template.html", 
            {"form": form, "countries": Country.objects.all()})

Here’s what the country model looks like:

class Country(models.Model):
    iso2 = models.CharField()
    iso3 = models.CharField()
    name = models.CharField()

Here’s what my form’s clean() method looks like (highly simplified):

def clean(self):
    self.cleaned_data['country'] = Country.objects.get(iso2=self.cleaned_data['country'])
    return self.cleaned_data

Here’s how I’m rendering it in a template:

<select name="country"{% if form.country.value %} data-initialvalue="{{form.country.value.iso2}}"{% endif %}>
    {% for country in countries %}
    <option value="{{country.iso2}}"{% if country.iso2==form.country.value.iso2 %} selected{% endif %}>{{country.name}}</option>
    {% endfor %}
</select>

However, I’m noticing that what actually ends up being delivered to my template isn’t a Country object, but a string of my input data, such as “US”. When I initially render my template with the initial data, things look fine, but when validation fails, things get messed up. What should I do, and what am I doing wrong?

  • 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-27T07:41:32+00:00Added an answer on May 27, 2026 at 7:41 am

    Just use ModelChoiceField for your country field.

    And don’t forget to define __unicode__ method of the model.

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

Sidebar

Related Questions

i have a pretty complicated form. as you can see below: alt text http://img9.imageshack.us/img9/2465/test2xk.jpg
I have a pretty complicated Linq query that I can't seem to get into
I have a pretty complicated index.php now, and I would like to only run
I'm back with another (possibly) silly question. sorry. I have a pretty complicated query
I have a complicated view that holds another partial view. The partial view has
I have a pretty complicated python program. Internally it has a logging system that
Within JSP files, I have some pretty complicated Javascript. On a production machine, we're
We've got a pretty complicated repository here, and I'm trying to get the most
My use is pretty complicated. I have a bunch of objs and they are
We have an odd problem, we are tranforming a pretty complicated XML file using

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.