| changeset 0 | 0d40e90630ef |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/web/lib/django/contrib/localflavor/mx/forms.py Wed Jan 20 00:34:04 2010 +0100 @@ -0,0 +1,14 @@ +""" +Mexican-specific form helpers. +""" + +from django.forms.fields import Select + +class MXStateSelect(Select): + """ + A Select widget that uses a list of Mexican states as its choices. + """ + def __init__(self, attrs=None): + from mx_states import STATE_CHOICES + super(MXStateSelect, self).__init__(attrs, choices=STATE_CHOICES) +