On Oct 15, 2:22 am, Adam <[EMAIL PROTECTED]> wrote:
> I have a model called "myRegion" defined like so:
>
> class myRegion(models.Model):
>         area = models.CharField(max_length=50, blank=False)
>         state = models.CharField(max_length=2, blank=False)
>
>         def __unicode__(self):
>                 return self.area + ", " + self.state
>
> What I would really like to do is have a form displayed on a page that
> simply has a drop-down box containing  all of the "area" values.  In a
> perfect world, the "------" blank option would not appear in the list.
>
> I've been successful in getting the form to appear properly when I'm
> accessing the myRegion as a ForeignKey through another model, but in
> this use case I can't do that.  When the form POSTS, I plan on using
> the data to set a session key which would be used later on.
>
> After poring through the docs for a few hours, I can't figure out the
> syntax to generate the form.  Is there anybody who would be willng to
> help?
>
> Thanks,
> Adam

class AreaForm(form.Form):
    area = forms.ModelChoiceField(queryset=myRegion.objects.all())

See here:
http://docs.djangoproject.com/en/dev/ref/forms/fields/#fields-which-handle-relationships
As the docs say, by default this will use your __unicode__ method - if
you just want the area names, subclass ModelChoiceField and define the
label_from_instance method.
--
DR.
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to