app/django/contrib/localflavor/mx/forms.py
author Sverre Rabbelier <srabbelier@gmail.com>
Sat, 29 Nov 2008 19:45:19 +0000 (2008-11-29)
changeset 614 53a3e46fc512
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Moved getSidebarLinks to sitemap.sidebar This is the fourth, and final patch, that attempts to improve the cohesion in the base.View class. Patch by: Sverre Rabbelier
"""
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)