Skip to main content

A pluggable django app that provides a comprehensive language and region choices field

Project description

Language and Region Fields for Django apps. Includes all language choices from the IANA Language Subtag Registry.

Included is:

  • LanguageField, a model field

  • RegionField, a model field

Installation

pip install django-language-fields

Basic usage

Add languages to the list of the installed apps in your settings.py file:

INSTALLED_APPS = [
    ...
    'languages',
    ...
]

Then, you can use it like any regular model field:

from languages.fields import LanguageField, RegionField

class MyModel(models.Model):
    ..
    language = LanguageField()
    ..

class MyModel(models.Model):
    ..
    region = RegionField()
    ..

Internally, LanguageField and RegionField are based upon CharField and by default represented as strings.

As with CharField’s, it is discouraged to use null=True use blank=True if you want to make it a non-required field.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-language-fields-1.0.1.tar.gz (70.3 kB view hashes)

Uploaded Source

Built Distribution

django_language_fields-1.0.1-py3-none-any.whl (70.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page