Added initial implementation + tests

This commit is contained in:
Swen Kooij
2016-10-21 12:21:11 +03:00
parent d33fecb490
commit 612b3bf427
18 changed files with 1030 additions and 2 deletions

25
settings.py Normal file
View File

@@ -0,0 +1,25 @@
DEBUG = True
TEMPLATE_DEBUG = True
SECRET_KEY = 'this is my secret key'
TEST_RUNNER = 'django.test.runner.DiscoverRunner'
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql',
'NAME': 'localized_fields',
'HOST': 'localhost'
}
}
LANGUAGE_CODE = 'en'
LANGUAGES = (
('en', 'English'),
('ro', 'Romanian'),
('nl', 'Dutch')
)
INSTALLED_APPS = [
'localized_fields'
]