PageRenderTime 22ms CodeModel.GetById 12ms RepoModel.GetById 0ms app.codeStats 0ms

/django/contrib/localflavor/ie/forms.py

https://code.google.com/p/mango-py/
Python | 13 lines | 5 code | 2 blank | 6 comment | 0 complexity | cc71b71206410ad717cf88f406ebb1eb MD5 | raw file
Possible License(s): BSD-3-Clause
  1. """
  2. UK-specific Form helpers
  3. """
  4. from django.forms.fields import Select
  5. class IECountySelect(Select):
  6. """
  7. A Select widget that uses a list of Irish Counties as its choices.
  8. """
  9. def __init__(self, attrs=None):
  10. from ie_counties import IE_COUNTY_CHOICES
  11. super(IECountySelect, self).__init__(attrs, choices=IE_COUNTY_CHOICES)