django1/django/contrib/localflavor/ec/ec_provinces.py

37 lines
842 B
Python

# -*- coding: utf-8 -*-
"""
A list of Ecuador departaments as `choices` in a
formfield.
This exists in this standalone file so that it's only
imported into memory when explicitly needed.
"""
from __future__ import unicode_literals
PROVINCE_CHOICES = (
('A', 'Azuay'),
('B', 'Bolívar'),
('F', 'Cañar'),
('C', 'Carchi'),
('H', 'Chimborazo'),
('X', 'Cotopaxi'),
('O', 'El Oro'),
('E', 'Esmeraldas'),
('W', 'Galápagos'),
('G', 'Guayas'),
('I', 'Imbabura'),
('L', 'Loja'),
('R', 'Los Ríos'),
('M', 'Manabí'),
('S', 'Morona Santiago'),
('N', 'Napo'),
('D', 'Orellana'),
('Y', 'Pastaza'),
('P', 'Pichincha'),
('SE', 'Santa Elena'),
('SD', 'Santo Domingo de los Tsáchilas'),
('U', 'Sucumbíos'),
('T', 'Tungurahua'),
('Z', 'Zamora Chinchipe'),
)