Changeset 8643 for django/trunk/django/contrib/localflavor/pl/forms.py
- Timestamp:
- 08/27/08 18:05:25 (3 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/contrib/localflavor/pl/forms.py
r8345 r8643 17 17 super(PLProvinceSelect, self).__init__(attrs, choices=VOIVODESHIP_CHOICES) 18 18 19 class PLCount iesSelect(Select):19 class PLCountySelect(Select): 20 20 """ 21 21 A select widget with list of Polish administrative units as choices. … … 23 23 def __init__(self, attrs=None): 24 24 from pl_administrativeunits import ADMINISTRATIVE_UNIT_CHOICES 25 super(PLCount iesSelect, self).__init__(attrs, choices=ADMINISTRATIVE_UNIT_CHOICES)25 super(PLCountySelect, self).__init__(attrs, choices=ADMINISTRATIVE_UNIT_CHOICES) 26 26 27 27 class PLPESELField(RegexField):
