Improved model select field for generic relationships

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
class ModelBrowseField(forms.ChoiceField):
    """
    Browse through the installed models using the content types framework.
    There are two difference in behavior with respect to the default field:

      1. if a model provides a translation (e.g.: verbose_name and/or
         verbose_name_plural), we show that rather than a raw model name
      2. allow to filter the models shown
    """
    def __init__(self, choices=None, *args, **kwargs):
        from django.contrib.contenttypes.models import ContentType

        qs = ContentType.objects.all()
        if choices:
            # if there's a list of allowed models, filter the queryset
            choices = list(choices)

            # labels are all lowercase
            choices = [choice.lower() for choice in choices]
            qs = qs.filter(model__in=choices)

        choices = qs.values_list('id', 'name')

        # translate items (if available)
        newchoices = []
        for id, choice in choices:
            id, mclass = id, ContentType.objects.get(pk=id).model_class()
            if mclass:
                newchoices.append((id, mclass._meta.verbose_name))
        choices = newchoices

        choices.insert(0, ('', '---------'))
        super(ModelBrowseField, self).__init__(choices=choices, *args, **kwargs)

More like this

  1. Modeli18n by pavl 1 year, 11 months ago
  2. PostgreSQL fulltext with language translations by diverman 1 year, 9 months ago
  3. Admin Apps Names Translation by Nad/ 2 years, 4 months ago
  4. Model field choices as a namedtuple by whiteinge 1 year, 1 month ago
  5. More readable Enumeration class for Django choices by achimnol 2 years, 10 months ago

Comments

sberlotto (on July 2, 2009):

Wow! very good work !

#

(Forgotten your password?)