You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
351 B
14 lines
351 B
""" |
|
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) |
|
|
|
|