app/django/contrib/localflavor/mx/forms.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Fri, 10 Oct 2008 13:14:24 +0000
changeset 297 35211afcd563
parent 54 03e267d67478
child 323 ff1a9aa48cfd
permissions -rw-r--r--
Load /Users/solydzajs/Downloads/google_appengine/ into trunk/thirdparty/google_appengine.

"""
Mexican-specific form helpers.
"""

from django.newforms.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)