### Eclipse Workspace Patch 1.0
#P django_svn
Index: django/contrib/localflavor/gt/__init__.py
===================================================================
Index: django/contrib/localflavor/gt/forms.py
===================================================================
--- django/contrib/localflavor/gt/forms.py	(revisión: 0)
+++ django/contrib/localflavor/gt/forms.py	(revisión: 0)
@@ -0,0 +1,14 @@
+"""
+Guatemalan-specific form helpers.
+"""
+
+from django.forms.fields import Select
+
+class GTDepartmentSelect(Select):
+    """
+    A Select widget that uses a list of Guatemalan departments as its choices.
+    """
+    def __init__(self, attrs=None):
+        from gt_departments import DEPARTMENT_CHOICES
+        super(GTDepartmentSelect, self).__init__(attrs, choices=DEPARTMENT_CHOICES)
+
Index: django/contrib/localflavor/gt/gt_departments.py
===================================================================
--- django/contrib/localflavor/gt/gt_departments.py	(revisión: 0)
+++ django/contrib/localflavor/gt/gt_departments.py	(revisión: 0)
@@ -0,0 +1,35 @@
+# -*- coding: utf-8 -*-
+"""
+A list of Guatemalan departments for use as `choices` in a formfield.
+
+This exists in this standalone file so that it's only imported into memory
+when explicitly needed.
+"""
+
+from django.utils.translation import ugettext_lazy as _
+
+DEPARTMENT_CHOICES = (
+    ('AV', _(u'Alta Verapaz')),
+    ('BV', _(u'Baja Verapaz')),
+    ('CO', _(u'Chimaltenango')),
+    ('CA', _(u'Chiquimula')),
+    ('PE', _(u'Petén')),
+    ('PR', _(u'El Progreso')),
+    ('EQ', _(u'El Quiché')),
+    ('ES', _(u'Escuintla')),
+    ('GU', _(u'Guatemala')),
+    ('HH', _(u'Huehuetenango')),
+    ('IZ', _(u'Izabal')),
+    ('JA', _(u'Jalapa')),
+    ('JU', _(u'Jutiapa')),
+    ('QU', _(u'Quetzaltenango')),
+    ('RH', _(u'Retalhuleu')),
+    ('SA', _(u'Sacatepéquez')),
+    ('SM', _(u'San Marcos')),
+    ('SR', _(u'Santa Rosa')),
+    ('SO', _(u'Sololá')),
+    ('SU', _(u'Suchitepéquez')),
+    ('TT', _(u'Totonicapán')),
+    ('ZA', _(u'Zacapa')),
+)
+
