1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825
|
==========================
The "local flavor" add-ons
==========================
.. module:: django.contrib.localflavor
:synopsis: A collection of various Django snippets that are useful only for
a particular country or culture.
Following its "batteries included" philosophy, Django comes with assorted
pieces of code that are useful for particular countries or cultures. These are
called the "local flavor" add-ons and live in the
:mod:`django.contrib.localflavor` package.
Inside that package, country- or culture-specific code is organized into
subpackages, named using `ISO 3166 country codes`_.
Most of the ``localflavor`` add-ons are localized form components deriving
from the :doc:`forms </topics/forms/index>` framework -- for example, a
:class:`~django.contrib.localflavor.us.forms.USStateField` that knows how to
validate U.S. state abbreviations, and a
:class:`~django.contrib.localflavor.fi.forms.FISocialSecurityNumber` that
knows how to validate Finnish social security numbers.
To use one of these localized components, just import the relevant subpackage.
For example, here's how you can create a form with a field representing a
French telephone number::
from django import forms
from django.contrib.localflavor.fr.forms import FRPhoneNumberField
class MyForm(forms.Form):
my_french_phone_no = FRPhoneNumberField()
Supported countries
===================
Countries currently supported by :mod:`~django.contrib.localflavor` are:
* Argentina_
* Australia_
* Austria_
* Brazil_
* Canada_
* Chile_
* Czech_
* Finland_
* France_
* Germany_
* Iceland_
* India_
* Indonesia_
* Ireland_
* Italy_
* Japan_
* Kuwait_
* Mexico_
* `The Netherlands`_
* Norway_
* Peru_
* Poland_
* Portugal_
* Romania_
* Slovakia_
* `South Africa`_
* Spain_
* Sweden_
* Switzerland_
* `United Kingdom`_
* `United States of America`_
* Uruguay_
The ``django.contrib.localflavor`` package also includes a ``generic`` subpackage,
containing useful code that is not specific to one particular country or culture.
Currently, it defines date, datetime and split datetime input fields based on
those from :doc:`forms </topics/forms/index>`, but with non-US default formats.
Here's an example of how to use them::
from django import forms
from django.contrib.localflavor import generic
class MyForm(forms.Form):
my_date_field = generic.forms.DateField()
.. _ISO 3166 country codes: http://www.iso.org/iso/country_codes/iso_3166_code_lists/english_country_names_and_code_elements.htm
.. _Argentina: `Argentina (ar)`_
.. _Australia: `Australia (au)`_
.. _Austria: `Austria (at)`_
.. _Brazil: `Brazil (br)`_
.. _Canada: `Canada (ca)`_
.. _Chile: `Chile (cl)`_
.. _Czech: `Czech (cz)`_
.. _Finland: `Finland (fi)`_
.. _France: `France (fr)`_
.. _Germany: `Germany (de)`_
.. _The Netherlands: `The Netherlands (nl)`_
.. _Iceland: `Iceland (is\_)`_
.. _India: `India (in\_)`_
.. _Indonesia: `Indonesia (id)`_
.. _Ireland: `Ireland (ie)`_
.. _Italy: `Italy (it)`_
.. _Japan: `Japan (jp)`_
.. _Kuwait: `Kuwait (kw)`_
.. _Mexico: `Mexico (mx)`_
.. _Norway: `Norway (no)`_
.. _Peru: `Peru (pe)`_
.. _Poland: `Poland (pl)`_
.. _Portugal: `Portugal (pt)`_
.. _Romania: `Romania (ro)`_
.. _Slovakia: `Slovakia (sk)`_
.. _South Africa: `South Africa (za)`_
.. _Spain: `Spain (es)`_
.. _Sweden: `Sweden (se)`_
.. _Switzerland: `Switzerland (ch)`_
.. _United Kingdom: `United Kingdom (uk)`_
.. _United States of America: `United States of America (us)`_
.. _Uruguay: `Uruguay (uy)`_
Adding flavors
==============
We'd love to add more of these to Django, so please `create a ticket`_ with
any code you'd like to contribute. One thing we ask is that you please use
Unicode objects (``u'mystring'``) for strings, rather than setting the encoding
in the file. See any of the existing flavors for examples.
.. _create a ticket: http://code.djangoproject.com/simpleticket
Argentina (``ar``)
=============================================
.. class:: ar.forms.ARPostalCodeField
A form field that validates input as either a classic four-digit Argentinian
postal code or a CPA_.
.. _CPA: http://www.correoargentino.com.ar/consulta_cpa/home.php
.. class:: ar.forms.ARDNIField
A form field that validates input as a Documento Nacional de Identidad (DNI)
number.
.. class:: ar.forms.ARCUITField
A form field that validates input as a Codigo Unico de Identificacion
Tributaria (CUIT) number.
.. class:: ar.forms.ARProvinceSelect
A ``Select`` widget that uses a list of Argentina's provinces and autonomous
cities as its choices.
Australia (``au``)
=============================================
.. class:: au.forms.AUPostCodeField
A form field that validates input as an Australian postcode.
.. class:: au.forms.AUPhoneNumberField
A form field that validates input as an Australian phone number. Valid numbers
have ten digits.
.. class:: au.forms.AUStateSelect
A ``Select`` widget that uses a list of Australian states/territories as its
choices.
Austria (``at``)
================
.. class:: at.forms.ATZipCodeField
A form field that validates its input as an Austrian zip code.
.. class:: at.forms.ATStateSelect
A ``Select`` widget that uses a list of Austrian states as its choices.
.. class:: at.forms.ATSocialSecurityNumberField
A form field that validates its input as an Austrian social security number.
Brazil (``br``)
===============
.. class:: br.forms.BRPhoneNumberField
A form field that validates input as a Brazilian phone number, with the format
XX-XXXX-XXXX.
.. class:: br.forms.BRZipCodeField
A form field that validates input as a Brazilian zip code, with the format
XXXXX-XXX.
.. class:: br.forms.BRStateSelect
A ``Select`` widget that uses a list of Brazilian states/territories as its
choices.
Canada (``ca``)
===============
.. class:: ca.forms.CAPhoneNumberField
A form field that validates input as a Canadian phone number, with the format
XXX-XXX-XXXX.
.. class:: ca.forms.CAPostalCodeField
A form field that validates input as a Canadian postal code, with the format
XXX XXX.
.. class:: ca.forms.CAProvinceField
A form field that validates input as a Canadian province name or abbreviation.
.. class:: ca.forms.CASocialInsuranceNumberField
A form field that validates input as a Canadian Social Insurance Number (SIN).
A valid number must have the format XXX-XXX-XXX and pass a `Luhn mod-10
checksum`_.
.. _Luhn mod-10 checksum: http://en.wikipedia.org/wiki/Luhn_algorithm
.. class:: ca.forms.CAProvinceSelect
A ``Select`` widget that uses a list of Canadian provinces and territories as
its choices.
Chile (``cl``)
==============
.. class:: cl.forms.CLRutField
A form field that validates input as a Chilean national identification number
('Rol Unico Tributario' or RUT). The valid format is XX.XXX.XXX-X.
.. class:: cl.forms.CLRegionSelect
A ``Select`` widget that uses a list of Chilean regions (Regiones) as its
choices.
Czech (``cz``)
==============
.. class:: cz.forms.CZPostalCodeField
A form field that validates input as a Czech postal code. Valid formats
are XXXXX or XXX XX, where X is a digit.
.. class:: cz.forms.CZBirthNumberField
A form field that validates input as a Czech Birth Number.
A valid number must be in format XXXXXX/XXXX (slash is optional).
.. class:: cz.forms.CZICNumberField
A form field that validates input as a Czech IC number field.
.. class:: cz.forms.CZRegionSelect
A ``Select`` widget that uses a list of Czech regions as its choices.
Finland (``fi``)
================
.. class:: fi.forms.FISocialSecurityNumber
A form field that validates input as a Finnish social security number.
.. class:: fi.forms.FIZipCodeField
A form field that validates input as a Finnish zip code. Valid codes
consist of five digits.
.. class:: fi.forms.FIMunicipalitySelect
A ``Select`` widget that uses a list of Finnish municipalities as its
choices.
France (``fr``)
===============
.. class:: fr.forms.FRPhoneNumberField
A form field that validates input as a French local phone number. The
correct format is 0X XX XX XX XX. 0X.XX.XX.XX.XX and 0XXXXXXXXX validate
but are corrected to 0X XX XX XX XX.
.. class:: fr.forms.FRZipCodeField
A form field that validates input as a French zip code. Valid codes
consist of five digits.
.. class:: fr.forms.FRDepartmentSelect
A ``Select`` widget that uses a list of French departments as its choices.
Germany (``de``)
================
.. class:: de.forms.DEIdentityCardNumberField
A form field that validates input as a German identity card number
(Personalausweis_). Valid numbers have the format
XXXXXXXXXXX-XXXXXXX-XXXXXXX-X, with no group consisting entirely of zeroes.
.. _Personalausweis: http://de.wikipedia.org/wiki/Personalausweis
.. class:: de.forms.DEZipCodeField
A form field that validates input as a German zip code. Valid codes
consist of five digits.
.. class:: de.forms.DEStateSelect
A ``Select`` widget that uses a list of German states as its choices.
The Netherlands (``nl``)
========================
.. class:: nl.forms.NLPhoneNumberField
A form field that validates input as a Dutch telephone number.
.. class:: nl.forms.NLSofiNumberField
A form field that validates input as a Dutch social security number
(SoFI/BSN).
.. class:: nl.forms.NLZipCodeField
A form field that validates input as a Dutch zip code.
.. class:: nl.forms.NLProvinceSelect
A ``Select`` widget that uses a list of Dutch provinces as its list of
choices.
Iceland (``is_``)
=================
.. class:: is_.forms.ISIdNumberField
A form field that validates input as an Icelandic identification number
(kennitala). The format is XXXXXX-XXXX.
.. class:: is_.forms.ISPhoneNumberField
A form field that validates input as an Icelandtic phone number (seven
digits with an optional hyphen or space after the first three digits).
.. class:: is_.forms.ISPostalCodeSelect
A ``Select`` widget that uses a list of Icelandic postal codes as its
choices.
India (``in_``)
===============
.. class:: in.forms.INStateField
A form field that validates input as an Indian state/territory name or
abbreviation. Input is normalized to the standard two-letter vehicle
registration abbreviation for the given state or territory.
.. class:: in.forms.INZipCodeField
A form field that validates input as an Indian zip code, with the
format XXXXXXX.
.. class:: in.forms.INStateSelect
A ``Select`` widget that uses a list of Indian states/territories as its
choices.
Ireland (``ie``)
================
.. class:: ie.forms.IECountySelect
A ``Select`` widget that uses a list of Irish Counties as its choices.
Indonesia (``id``)
==================
.. class:: id.forms.IDPostCodeField
A form field that validates input as an Indonesian post code field.
.. class:: id.forms.IDProvinceSelect
A ``Select`` widget that uses a list of Indonesian provinces as its choices.
.. class:: id.forms.IDPhoneNumberField
A form field that validates input as an Indonesian telephone number.
.. class:: id.forms.IDLicensePlatePrefixSelect
A ``Select`` widget that uses a list of Indonesian license plate
prefix code as its choices.
.. class:: id.forms.IDLicensePlateField
A form field that validates input as an Indonesian vehicle license plate.
.. class:: id.forms.IDNationalIdentityNumberField
A form field that validates input as an Indonesian national identity
number (`NIK`_/KTP). The output will be in the format of
'XX.XXXX.DDMMYY.XXXX'. Dots or spaces can be used in the input to break
down the numbers.
.. _NIK: http://en.wikipedia.org/wiki/Indonesian_identity_card
Italy (``it``)
==============
.. class:: it.forms.ITSocialSecurityNumberField
A form field that validates input as an Italian social security number
(`codice fiscale`_).
.. _codice fiscale: http://www.agenziaentrate.it/ilwwcm/connect/Nsi/Servizi/Codice+fiscale+-+tessera+sanitaria/NSI+Informazioni+sulla+codificazione+delle+persone+fisiche
.. class:: it.forms.ITVatNumberField
A form field that validates Italian VAT numbers (partita IVA).
.. class:: it.forms.ITZipCodeField
A form field that validates input as an Italian zip code. Valid codes
must have five digits.
.. class:: it.forms.ITProvinceSelect
A ``Select`` widget that uses a list of Italian provinces as its choices.
.. class:: it.forms.ITRegionSelect
A ``Select`` widget that uses a list of Italian regions as its choices.
Japan (``jp``)
==============
.. class:: jp.forms.JPPostalCodeField
A form field that validates input as a Japanese postcode. It accepts seven
digits, with or without a hyphen.
.. class:: jp.forms.JPPrefectureSelect
A ``Select`` widget that uses a list of Japanese prefectures as its choices.
Kuwait (``kw``)
===============
.. class:: kw.forms.KWCivilIDNumberField
A form field that validates input as a Kuwaiti Civil ID number. A valid
Civil ID number must obey the following rules:
* The number consist of 12 digits.
* The birthdate of the person is a valid date.
* The calculated checksum equals to the last digit of the Civil ID.
Mexico (``mx``)
===============
.. class:: mx.forms.MXStateSelect
A ``Select`` widget that uses a list of Mexican states as its choices.
Norway (``no``)
===============
.. class:: no.forms.NOSocialSecurityNumber
A form field that validates input as a Norwegian social security number
(personnummer_).
.. _personnummer: http://no.wikipedia.org/wiki/Personnummer
.. class:: no.forms.NOZipCodeField
A form field that validates input as a Norwegian zip code. Valid codes
have four digits.
.. class:: no.forms.NOMunicipalitySelect
A ``Select`` widget that uses a list of Norwegian municipalities (fylker) as
its choices.
Peru (``pe``)
=============
.. class:: pe.forms.PEDNIField
A form field that validates input as a DNI (Peruvian national identity)
number.
.. class:: pe.forms.PERUCField
A form field that validates input as an RUC (Registro Unico de
Contribuyentes) number. Valid RUC numbers have 11 digits.
.. class:: pe.forms.PEDepartmentSelect
A ``Select`` widget that uses a list of Peruvian Departments as its choices.
Poland (``pl``)
===============
.. class:: pl.forms.PLPESELField
A form field that validates input as a Polish national identification number
(PESEL_).
.. _PESEL: http://en.wikipedia.org/wiki/PESEL
.. class:: pl.forms.PLREGONField
A form field that validates input as a Polish National Official Business
Register Number (REGON_), having either seven or nine digits. The checksum
algorithm used for REGONs is documented at
http://wipos.p.lodz.pl/zylla/ut/nip-rego.html.
.. _REGON: http://www.stat.gov.pl/bip/regon_ENG_HTML.htm
.. class:: pl.forms.PLPostalCodeField
A form field that validates input as a Polish postal code. The valid format
is XX-XXX, where X is a digit.
.. class:: pl.forms.PLNIPField
A form field that validates input as a Polish Tax Number (NIP). Valid
formats are XXX-XXX-XX-XX or XX-XX-XXX-XXX. The checksum algorithm used
for NIPs is documented at http://wipos.p.lodz.pl/zylla/ut/nip-rego.html.
.. class:: pl.forms.PLCountySelect
A ``Select`` widget that uses a list of Polish administrative units as its
choices.
.. class:: pl.forms.PLProvinceSelect
A ``Select`` widget that uses a list of Polish voivodeships (administrative
provinces) as its choices.
Portugal (``pt``)
=================
.. class:: pt.forms.PTZipCodeField
A form field that validates input as a Portuguese zip code.
.. class:: pt.forms.PTPhoneNumberField
A form field that validates input as a Portuguese phone number.
Valid numbers have 9 digits (may include spaces) or start by 00
or + (international).
Romania (``ro``)
================
.. class:: ro.forms.ROCIFField
A form field that validates Romanian fiscal identification codes (CIF). The
return value strips the leading RO, if given.
.. class:: ro.forms.ROCNPField
A form field that validates Romanian personal numeric codes (CNP).
.. class:: ro.forms.ROCountyField
A form field that validates its input as a Romanian county (judet) name or
abbreviation. It normalizes the input to the standard vehicle registration
abbreviation for the given county. This field will only accept names written
with diacritics; consider using ROCountySelect as an alternative.
.. class:: ro.forms.ROCountySelect
A ``Select`` widget that uses a list of Romanian counties (judete) as its
choices.
.. class:: ro.forms.ROIBANField
A form field that validates its input as a Romanian International Bank
Account Number (IBAN). The valid format is ROXX-XXXX-XXXX-XXXX-XXXX-XXXX,
with or without hyphens.
.. class:: ro.forms.ROPhoneNumberField
A form field that validates Romanian phone numbers, short special numbers
excluded.
.. class:: ro.forms.ROPostalCodeField
A form field that validates Romanian postal codes.
Slovakia (``sk``)
=================
.. class:: sk.forms.SKPostalCodeField
A form field that validates input as a Slovak postal code. Valid formats
are XXXXX or XXX XX, where X is a digit.
.. class:: sk.forms.SKDistrictSelect
A ``Select`` widget that uses a list of Slovak districts as its choices.
.. class:: sk.forms.SKRegionSelect
A ``Select`` widget that uses a list of Slovak regions as its choices.
South Africa (``za``)
=====================
.. class:: za.forms.ZAIDField
A form field that validates input as a South African ID number. Validation
uses the Luhn checksum and a simplistic (i.e., not entirely accurate) check
for birth date.
.. class:: za.forms.ZAPostCodeField
A form field that validates input as a South African postcode. Valid
postcodes must have four digits.
Spain (``es``)
==============
.. class:: es.forms.ESIdentityCardNumberField
A form field that validates input as a Spanish NIF/NIE/CIF (Fiscal
Identification Number) code.
.. class:: es.forms.ESCCCField
A form field that validates input as a Spanish bank account number (Codigo
Cuenta Cliente or CCC). A valid CCC number has the format
EEEE-OOOO-CC-AAAAAAAAAA, where the E, O, C and A digits denote the entity,
office, checksum and account, respectively. The first checksum digit
validates the entity and office. The second checksum digit validates the
account. It is also valid to use a space as a delimiter, or to use no
delimiter.
.. class:: es.forms.ESPhoneNumberField
A form field that validates input as a Spanish phone number. Valid numbers
have nine digits, the first of which is 6, 8 or 9.
.. class:: es.forms.ESPostalCodeField
A form field that validates input as a Spanish postal code. Valid codes
have five digits, the first two being in the range 01 to 52, representing
the province.
.. class:: es.forms.ESProvinceSelect
A ``Select`` widget that uses a list of Spanish provinces as its choices.
.. class:: es.forms.ESRegionSelect
A ``Select`` widget that uses a list of Spanish regions as its choices.
Sweden (``se``)
===============
.. class:: se.forms.SECountySelect
A Select form widget that uses a list of the Swedish counties (län) as its
choices.
The cleaned value is the official county code -- see
http://en.wikipedia.org/wiki/Counties_of_Sweden for a list.
.. class:: se.forms.SEOrganisationNumber
A form field that validates input as a Swedish organisation number
(organisationsnummer).
It accepts the same input as SEPersonalIdentityField (for sole
proprietorships (enskild firma). However, co-ordination numbers are not
accepted.
It also accepts ordinary Swedish organisation numbers with the format
NNNNNNNNNN.
The return value will be YYYYMMDDXXXX for sole proprietors, and NNNNNNNNNN
for other organisations.
.. class:: se.forms.SEPersonalIdentityNumber
A form field that validates input as a Swedish personal identity number
(personnummer).
The correct formats are YYYYMMDD-XXXX, YYYYMMDDXXXX, YYMMDD-XXXX,
YYMMDDXXXX and YYMMDD+XXXX.
A \+ indicates that the person is older than 100 years, which will be taken
into consideration when the date is validated.
The checksum will be calculated and checked. The birth date is checked
to be a valid date.
By default, co-ordination numbers (samordningsnummer) will be accepted. To
only allow real personal identity numbers, pass the keyword argument
coordination_number=False to the constructor.
The cleaned value will always have the format YYYYMMDDXXXX.
.. class:: se.forms.SEPostalCodeField
A form field that validates input as a Swedish postal code (postnummer).
Valid codes consist of five digits (XXXXX). The number can optionally be
formatted with a space after the third digit (XXX XX).
The cleaned value will never contain the space.
Switzerland (``ch``)
====================
.. class:: ch.forms.CHIdentityCardNumberField
A form field that validates input as a Swiss identity card number.
A valid number must confirm to the X1234567<0 or 1234567890 format and
have the correct checksums -- see http://adi.kousz.ch/artikel/IDCHE.htm.
.. class:: ch.forms.CHPhoneNumberField
A form field that validates input as a Swiss phone number. The correct
format is 0XX XXX XX XX. 0XX.XXX.XX.XX and 0XXXXXXXXX validate but are
corrected to 0XX XXX XX XX.
.. class:: ch.forms.CHZipCodeField
A form field that validates input as a Swiss zip code. Valid codes
consist of four digits.
.. class:: ch.forms.CHStateSelect
A ``Select`` widget that uses a list of Swiss states as its choices.
United Kingdom (``uk``)
=======================
.. class:: uk.forms.UKPostcodeField
A form field that validates input as a UK postcode. The regular
expression used is sourced from the schema for British Standard BS7666
address types at http://www.cabinetoffice.gov.uk/media/291293/bs7666-v2-0.xml.
.. class:: uk.forms.UKCountySelect
A ``Select`` widget that uses a list of UK counties/regions as its choices.
.. class:: uk.forms.UKNationSelect
A ``Select`` widget that uses a list of UK nations as its choices.
United States of America (``us``)
=================================
.. class:: us.forms.USPhoneNumberField
A form field that validates input as a U.S. phone number.
.. class:: us.forms.USSocialSecurityNumberField
A form field that validates input as a U.S. Social Security Number (SSN).
A valid SSN must obey the following rules:
* Format of XXX-XX-XXXX
* No group of digits consisting entirely of zeroes
* Leading group of digits cannot be 666
* Number not in promotional block 987-65-4320 through 987-65-4329
* Number not one known to be invalid due to widespread promotional
use or distribution (e.g., the Woolworth's number or the 1962
promotional number)
.. class:: us.forms.USStateField
A form field that validates input as a U.S. state name or abbreviation. It
normalizes the input to the standard two-letter postal service abbreviation
for the given state.
.. class:: us.forms.USZipCodeField
A form field that validates input as a U.S. ZIP code. Valid formats are
XXXXX or XXXXX-XXXX.
.. class:: us.forms.USStateSelect
A form ``Select`` widget that uses a list of U.S. states/territories as its
choices.
.. class:: us.models.PhoneNumberField
A :class:`CharField` that checks that the value is a valid U.S.A.-style phone
number (in the format ``XXX-XXX-XXXX``).
.. class:: us.models.USStateField
A model field that forms represent as a ``forms.USStateField`` field and
stores the two-letter U.S. state abbreviation in the database.
Uruguay (``uy``)
================
.. class:: uy.forms.UYCIField
A field that validates Uruguayan 'Cedula de identidad' (CI) numbers.
.. class:: uy.forms.UYDepartamentSelect
A ``Select`` widget that uses a list of Uruguayan departaments as its
choices.
|