X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/35c2cc82e299b9ed2c427d8ee7ae072deddcef6d..94da7eb2739d91e80607681bc61672ef769ca90c:/src/redakcja/settings/__init__.py diff --git a/src/redakcja/settings/__init__.py b/src/redakcja/settings/__init__.py index 93fd5ca4..ecebe40e 100644 --- a/src/redakcja/settings/__init__.py +++ b/src/redakcja/settings/__init__.py @@ -69,6 +69,8 @@ if CAS_SERVER_URL: ROOT_URLCONF = 'redakcja.urls' INSTALLED_APPS = ( + 'modeltranslation', + 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', @@ -89,6 +91,7 @@ INSTALLED_APPS = ( 'bootstrap4', 'rest_framework', 'django_filters', + 'admin_ordering', 'redakcja.api', 'catalogue', @@ -133,7 +136,7 @@ PIPELINE = { 'CSS_COMPRESSOR': None, 'JS_COMPRESSOR': None, 'COMPILERS': ( - 'libsasscompiler.LibSassCompiler', + 'pipeline.compilers.sass.SASSCompiler', ), # CSS and JS files to compress @@ -290,6 +293,16 @@ REST_FRAMEWORK = { } +LANGUAGES = [ + ('pl', 'polski'), + ('de', 'Deutsch'), + ('lt', 'lietuvių'), +] + + +TEST_INTEGRATION = False + + try: SENTRY_DSN except NameError: