Changeset 7077
- Timestamp:
- 02/02/08 22:44:00 (8 months ago)
- Files:
-
- django/trunk/django/contrib/localflavor/ar/forms.py (modified) (3 diffs)
- django/trunk/docs/localflavor.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/contrib/localflavor/ar/forms.py
r6926 r7077 21 21 class ARPostalCodeField(RegexField): 22 22 """ 23 A field that accepts a `classic�NNNN Postal Code or a CPA.23 A field that accepts a 'classic' NNNN Postal Code or a CPA. 24 24 25 25 See http://www.correoargentino.com.ar/consulta_cpa/home.php … … 45 45 class ARDNIField(CharField): 46 46 """ 47 A field that validates `Documento Nacional de Identidad�(DNI) numbers.47 A field that validates 'Documento Nacional de Identidad' (DNI) numbers. 48 48 """ 49 49 default_error_messages = { … … 74 74 class ARCUITField(RegexField): 75 75 """ 76 This field validates a CUIT (C �o �ico de Identificaci�ributaria). A76 This field validates a CUIT (Código Único de Identificación Tributaria). A 77 77 CUIT is of the form XX-XXXXXXXX-V. The last digit is a check digit. 78 78 """ django/trunk/docs/localflavor.txt
r7005 r7077 114 114 .. _CPA: http://www.correoargentino.com.ar/consulta_cpa/home.php 115 115 116 ARDNIField 117 ---------- 118 119 A form field that validates input as a Documento Nacional de Identidad (DNI) 120 number. 121 122 ARCUITField 123 ----------- 124 125 A form field that validates input as a Código Único de Identificación 126 Tributaria (CUIT) number. 127 116 128 ARProvinceSelect 117 129 ---------------- 118 130 119 A ``Select`` widget that uses a list of Argentina's provinces as its choices. 131 A ``Select`` widget that uses a list of Argentina's provinces and autonomous 132 cities as its choices. 120 133 121 134 Australia (``django.contrib.localflavor.au``) … … 611 624 A ``Select`` widget that uses a list of UK nations as its choices. 612 625 613 United States of America (``django.contrib.localflavor.us``) 626 United States of America (``django.contrib.localflavor.us``) 614 627 ============================================================ 615 628 … … 636 649 ------------ 637 650 638 A form field that validates input as a U.S. state name or abbreviation. It 651 A form field that validates input as a U.S. state name or abbreviation. It 639 652 normalizes the input to the standard two-letter postal service abbreviation 640 653 for the given state.
