Changeset 8230
- Timestamp:
- 08/08/08 10:34:02 (4 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/contrib/localflavor/pe/forms.py
r7971 r8230 8 8 from django.utils.translation import ugettext_lazy as _ 9 9 10 class PE DepartmentSelect(Select):10 class PERegionSelect(Select): 11 11 """ 12 A Select widget that uses a list of Peruvian Departments as its choices.12 A Select widget that uses a list of Peruvian Regions as its choices. 13 13 """ 14 14 def __init__(self, attrs=None): 15 from pe_ department import DEPARTMENT_CHOICES16 super(PE DepartmentSelect, self).__init__(attrs, choices=DEPARTMENT_CHOICES)15 from pe_region import REGION_CHOICES 16 super(PERegionSelect, self).__init__(attrs, choices=REGION_CHOICES) 17 17 18 18 class PEDNIField(CharField): django/trunk/django/contrib/localflavor/pe/pe_region.py
r7294 r8230 1 1 # -*- coding: utf-8 -*- 2 2 """ 3 A list of Peru departaments as `choices` in a 4 formfield. 3 A list of Peru regions as `choices` in a formfield. 5 4 6 5 This exists in this standalone file so that it's only imported into memory … … 8 7 """ 9 8 10 DEPARTMENT_CHOICES = (9 REGION_CHOICES = ( 11 10 ('AMA', u'Amazonas'), 12 11 ('ANC', u'Ancash'), … … 15 14 ('AYA', u'Ayacucho'), 16 15 ('CAJ', u'Cajamarca'), 16 ('CAL', u'Callao'), 17 17 ('CUS', u'Cusco'), 18 18 ('HUV', u'Huancavelica'),
