2011-05-03 19:52:20 +08:00
|
|
|
from django.contrib.localflavor.gb import forms
|
2007-02-16 05:26:43 +08:00
|
|
|
|
2011-05-03 19:52:20 +08:00
|
|
|
import warnings
|
|
|
|
warnings.warn(
|
|
|
|
'The "UK" prefix for United Kingdom has been deprecated in favour of the '
|
|
|
|
'GB code. Please use the new GB-prefixed names.', PendingDeprecationWarning)
|
2007-12-19 12:43:47 +08:00
|
|
|
|
2011-05-03 19:52:20 +08:00
|
|
|
UKPostcodeField = forms.GBPostcodeField
|
|
|
|
UKCountySelect = forms.GBCountySelect
|
|
|
|
UKNationSelect = forms.GBNationSelect
|