summaryrefslogtreecommitdiffstats
path: root/webapp/django/contrib/localflavor/mx/forms.py
blob: 95819375ef08fc3fb219d8eef3384ae863f9d0be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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)