Login

LanguageField

Author:
marinho
Posted:
December 1, 2007
Language:
Python
Version:
.96
Score:
2 (after 4 ratings)

How to use: simple as a CharField.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
from django.conf import settings

class LanguageField(models.CharField):
    def __init__(self, *args, **kwargs):
        kwargs.setdefault('maxlength', 5)
        kwargs.setdefault('choices', settings.LANGUAGES)
        
        super(LanguageField, self).__init__(*args, **kwargs)

    def get_internal_type(self):
        return "CharField"

More like this

  1. Template tag - list punctuation for a list of items by shapiromatron 3 months, 1 week ago
  2. JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 3 months, 2 weeks ago
  3. Serializer factory with Django Rest Framework by julio 10 months, 1 week ago
  4. Image compression before saving the new model / work with JPG, PNG by Schleidens 11 months ago
  5. Help text hyperlinks by sa2812 11 months, 3 weeks ago

Comments

aguafuertes (on July 9, 2009):

Thanks for the snippet.

A little typo: in Line 5 it must be 'max_length' instead of 'maxlength'

#

jeverling (on May 16, 2012):

Although this snippet is rather old, it still works fine... :) If you want to use I18N, you should use this:

from django.utils import translation
kwargs.setdefault('choices', [(k, translation.ugettext(v)) for k, v in settings.LANGUAGES])

Also, 5 chars is not enough anymore, for example sr-latn has 7.

#

julius425 (on May 8, 2019):

Sir, this is still helpful. Many thanks.

#

Please login first before commenting.