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 --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---