|
@ -14,7 +14,6 @@ from os.path import dirname |
|
|
|
|
|
|
|
|
import django.conf.global_settings as DEFAULT_SETTINGS |
|
|
import django.conf.global_settings as DEFAULT_SETTINGS |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
BASE_DIR = dirname(dirname(dirname(__file__))) |
|
|
BASE_DIR = dirname(dirname(dirname(__file__))) |
|
|
|
|
|
|
|
|
# Quick-start development settings - unsuitable for production |
|
|
# Quick-start development settings - unsuitable for production |
|
@ -95,6 +94,12 @@ USE_I18N = True |
|
|
USE_L10N = True |
|
|
USE_L10N = True |
|
|
USE_THOUSAND_SEPARATOR = True |
|
|
USE_THOUSAND_SEPARATOR = True |
|
|
|
|
|
|
|
|
|
|
|
gettext_noop = lambda s: s # for gettext discovery |
|
|
|
|
|
LANGUAGES = ( |
|
|
|
|
|
('en', gettext_noop('English')), |
|
|
|
|
|
('pt-br', gettext_noop('Brazilian Portuguese')), |
|
|
|
|
|
) |
|
|
|
|
|
|
|
|
# Static files (CSS, JavaScript, Images) |
|
|
# Static files (CSS, JavaScript, Images) |
|
|
# https://docs.djangoproject.com/en/dev/howto/static-files/ |
|
|
# https://docs.djangoproject.com/en/dev/howto/static-files/ |
|
|
STATIC_ROOT = os.path.join(BASE_DIR, 'static') |
|
|
STATIC_ROOT = os.path.join(BASE_DIR, 'static') |
|
|