/django/contrib/localflavor/ar/ar_provinces.py

https://code.google.com/p/mango-py/ · Python · 36 lines · 27 code · 0 blank · 9 comment · 0 complexity · fbfcbfa77bd6c678c76a0f07dee5aadb MD5 · raw file

  1. # -*- coding: utf-8 -*-
  2. """
  3. A list of Argentinean provinces and autonomous cities as `choices` in a
  4. formfield. From
  5. http://www.argentina.gov.ar/argentina/portal/paginas.dhtml?pagina=425
  6. This exists in this standalone file so that it's only imported into memory
  7. when explicitly needed.
  8. """
  9. PROVINCE_CHOICES = (
  10. ('B', u'Buenos Aires'),
  11. ('K', u'Catamarca'),
  12. ('H', u'Chaco'),
  13. ('U', u'Chubut'),
  14. ('C', u'Ciudad Autónoma de Buenos Aires'),
  15. ('X', u'Córdoba'),
  16. ('W', u'Corrientes'),
  17. ('E', u'Entre Ríos'),
  18. ('P', u'Formosa'),
  19. ('Y', u'Jujuy'),
  20. ('L', u'La Pampa'),
  21. ('F', u'La Rioja'),
  22. ('M', u'Mendoza'),
  23. ('N', u'Misiones'),
  24. ('Q', u'Neuquén'),
  25. ('R', u'Río Negro'),
  26. ('A', u'Salta'),
  27. ('J', u'San Juan'),
  28. ('D', u'San Luis'),
  29. ('Z', u'Santa Cruz'),
  30. ('S', u'Santa Fe'),
  31. ('G', u'Santiago del Estero'),
  32. ('V', u'Tierra del Fuego, Antártida e Islas del Atlántico Sur'),
  33. ('T', u'Tucumán'),
  34. )