2007-02-16 05:26:43 +08:00
|
|
|
"""
|
|
|
|
UK-specific Form helpers
|
|
|
|
"""
|
|
|
|
|
2007-12-03 08:35:31 +08:00
|
|
|
from django.newforms.fields import RegexField, Select
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
from django.utils.translation import ugettext
|
2007-02-16 05:26:43 +08:00
|
|
|
|
|
|
|
class UKPostcodeField(RegexField):
|
|
|
|
"""
|
|
|
|
A form field that validates its input is a UK postcode.
|
|
|
|
|
|
|
|
The regular expression used is sourced from the schema for British Standard
|
|
|
|
BS7666 address types: http://www.govtalk.gov.uk/gdsc/schemas/bs7666-v2-0.xsd
|
|
|
|
"""
|
2007-12-17 16:05:27 +08:00
|
|
|
default_error_messages = {
|
|
|
|
'invalid': ugettext(u'Enter a postcode. A space is required between the two postcode parts.'),
|
|
|
|
}
|
|
|
|
|
2007-02-16 05:26:43 +08:00
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(UKPostcodeField, self).__init__(r'^(GIR 0AA|[A-PR-UWYZ]([0-9]{1,2}|([A-HIK-Y][0-9](|[0-9]|[ABEHMNPRVWXY]))|[0-9][A-HJKSTUW]) [0-9][ABD-HJLNP-UW-Z]{2})$',
|
2007-12-17 16:05:27 +08:00
|
|
|
max_length=None, min_length=None, *args, **kwargs)
|
2007-12-03 08:35:31 +08:00
|
|
|
|
|
|
|
class UKCountySelect(Select):
|
|
|
|
"""
|
|
|
|
A Select widget that uses a list of UK Counties/Regions as its choices.
|
|
|
|
"""
|
|
|
|
def __init__(self, attrs=None):
|
|
|
|
from uk_regions import UK_REGION_CHOICES
|
|
|
|
super(UKCountySelect, self).__init__(attrs, choices=UK_REGION_CHOICES)
|
|
|
|
|
|
|
|
class UKNationSelect(Select):
|
|
|
|
"""
|
|
|
|
A Select widget that uses a list of UK Nations as its choices.
|
|
|
|
"""
|
|
|
|
def __init__(self, attrs=None):
|
|
|
|
from uk_regions import UK_NATIONS_CHOICES
|
|
|
|
super(UKNationSelect, self).__init__(attrs, choices=UK_NATIONS_CHOICES)
|