Exemplo n.º 1
0
Arquivo: forms.py Projeto: zalun/pto
 def clean_country(self):  # pragma: no cover
     # this method doesn't do much since we're using a ChoiceField
     value = self.cleaned_data['country']
     if value in COUNTRY_ALIASES.values():
         pass
     elif value in COUNTRY_ALIASES:
         value = COUNTRY_ALIASES.get(value)
     else:
         # search case-insensitively
         for alias in COUNTRY_ALIASES:
             if alias.lower() == value.lower():
                 value = COUNTRY_ALIASES[alias]
                 break
     return value
Exemplo n.º 2
0
Arquivo: forms.py Projeto: mozilla/pto
 def clean_country(self):  # pragma: no cover
     # this method doesn't do much since we're using a ChoiceField
     value = self.cleaned_data['country']
     if value in COUNTRY_ALIASES.values():
         pass
     elif value in COUNTRY_ALIASES:
         value = COUNTRY_ALIASES.get(value)
     else:
         # search case-insensitively
         for alias in COUNTRY_ALIASES:
             if alias.lower() == value.lower():
                 value = COUNTRY_ALIASES[alias]
                 break
     return value
Exemplo n.º 3
0
Arquivo: forms.py Projeto: zalun/pto
    def __init__(self, *args, **kwargs):
        super(ProfileForm, self).__init__(*args, **kwargs)

        country_choices = []
        _all_longforms = []
        for each in (UserProfile.objects.exclude(country='').values(
                'country').distinct('country').order_by('country')):
            country = each['country']
            long_form = country
            if long_form in COUNTRY_ALIASES.values():
                long_form = [
                    k for (k, v) in COUNTRY_ALIASES.items() if v == country
                ][0]
            _all_longforms.append(long_form)
            country_choices.append((country, long_form))
        for alias, country in COUNTRY_ALIASES.items():
            if alias not in _all_longforms:
                _all_longforms.append(alias)
                country_choices.append((country, alias))

        country_choices.sort(lambda x, y: cmp(x[1], y[1]))
        self.fields['country'].choices = country_choices
Exemplo n.º 4
0
Arquivo: forms.py Projeto: mozilla/pto
    def __init__(self, *args, **kwargs):
        super(ProfileForm, self).__init__(*args, **kwargs)

        country_choices = []
        _all_longforms = []
        for each in (UserProfile.objects.exclude(country='')
                     .values('country')
                     .distinct('country')
                     .order_by('country')):
            country = each['country']
            long_form = country
            if long_form in COUNTRY_ALIASES.values():
                long_form = [k for (k, v) in COUNTRY_ALIASES.items()
                             if v == country][0]
            _all_longforms.append(long_form)
            country_choices.append((country, long_form))
        for alias, country in COUNTRY_ALIASES.items():
            if alias not in _all_longforms:
                _all_longforms.append(alias)
                country_choices.append((country, alias))

        country_choices.sort(lambda x, y: cmp(x[1], y[1]))
        self.fields['country'].choices = country_choices