author | Pawel Solyga <Pawel.Solyga@gmail.com> |
Mon, 28 Sep 2009 12:22:26 +0200 | |
changeset 2987 | db28a7db5cc6 |
parent 323 | ff1a9aa48cfd |
permissions | -rw-r--r-- |
""" 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)