Not sure, but I think this may be a bug?
Here is my model:
class Property(models.Model):
Name = models.CharField(max_length=40)
Description = models.TextField(default="Description Not Available")
Address = models.CharField(max_length=60, default="Not Available")
Address2 = models.CharField(max_length=60,null=True)
City = models.CharField(max_length=60, null=True)
State = usa_model.USStateField(null=True)
Code = usa_model.USPostalCodeField(null=True)
Phone = usa_model.PhoneNumberField(null=True)
Am I missing something?
-Kerry
Perhaps you are looking for the US Zip Code Form Field?
The
USPostalCodeField
uses a list of the states + a few extras:At
django.contrib.localflavor.us.us_states