├── AUTHORS ├── LICENSE ├── README.rst ├── model_i18n ├── __init__.py ├── admin.py ├── conf.py ├── exceptions.py ├── loaders.py ├── managers.py ├── options.py ├── patches.py ├── query.py ├── templates │ └── i18n │ │ └── admin │ │ ├── change_form.html │ │ ├── change_translation_form.html │ │ └── language_links.html ├── translator.py ├── utils.py └── validation.py └── test_project ├── __init__.py ├── apps └── app │ ├── __init__.py │ ├── models.py │ └── translations.py ├── i18n_conf.py ├── manage.py ├── settings.py └── urls.py /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonz/django-model-i18n/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonz/django-model-i18n/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonz/django-model-i18n/HEAD/README.rst -------------------------------------------------------------------------------- /model_i18n/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonz/django-model-i18n/HEAD/model_i18n/__init__.py -------------------------------------------------------------------------------- /model_i18n/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonz/django-model-i18n/HEAD/model_i18n/admin.py -------------------------------------------------------------------------------- /model_i18n/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonz/django-model-i18n/HEAD/model_i18n/conf.py -------------------------------------------------------------------------------- /model_i18n/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonz/django-model-i18n/HEAD/model_i18n/exceptions.py -------------------------------------------------------------------------------- /model_i18n/loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonz/django-model-i18n/HEAD/model_i18n/loaders.py -------------------------------------------------------------------------------- /model_i18n/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonz/django-model-i18n/HEAD/model_i18n/managers.py -------------------------------------------------------------------------------- /model_i18n/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonz/django-model-i18n/HEAD/model_i18n/options.py -------------------------------------------------------------------------------- /model_i18n/patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonz/django-model-i18n/HEAD/model_i18n/patches.py -------------------------------------------------------------------------------- /model_i18n/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonz/django-model-i18n/HEAD/model_i18n/query.py -------------------------------------------------------------------------------- /model_i18n/templates/i18n/admin/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonz/django-model-i18n/HEAD/model_i18n/templates/i18n/admin/change_form.html -------------------------------------------------------------------------------- /model_i18n/templates/i18n/admin/change_translation_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonz/django-model-i18n/HEAD/model_i18n/templates/i18n/admin/change_translation_form.html -------------------------------------------------------------------------------- /model_i18n/templates/i18n/admin/language_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonz/django-model-i18n/HEAD/model_i18n/templates/i18n/admin/language_links.html -------------------------------------------------------------------------------- /model_i18n/translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonz/django-model-i18n/HEAD/model_i18n/translator.py -------------------------------------------------------------------------------- /model_i18n/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonz/django-model-i18n/HEAD/model_i18n/utils.py -------------------------------------------------------------------------------- /model_i18n/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonz/django-model-i18n/HEAD/model_i18n/validation.py -------------------------------------------------------------------------------- /test_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_project/apps/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_project/apps/app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonz/django-model-i18n/HEAD/test_project/apps/app/models.py -------------------------------------------------------------------------------- /test_project/apps/app/translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonz/django-model-i18n/HEAD/test_project/apps/app/translations.py -------------------------------------------------------------------------------- /test_project/i18n_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonz/django-model-i18n/HEAD/test_project/i18n_conf.py -------------------------------------------------------------------------------- /test_project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonz/django-model-i18n/HEAD/test_project/manage.py -------------------------------------------------------------------------------- /test_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonz/django-model-i18n/HEAD/test_project/settings.py -------------------------------------------------------------------------------- /test_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonz/django-model-i18n/HEAD/test_project/urls.py --------------------------------------------------------------------------------