X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/967eed676fc83d15b26149047f353ac61faa8217..75957f735219259d3b4bc361f80ccd3d7b92a0e9:/src/wolnelektury/settings/apps.py diff --git a/src/wolnelektury/settings/apps.py b/src/wolnelektury/settings/apps.py index 344669550..ba313f5c3 100644 --- a/src/wolnelektury/settings/apps.py +++ b/src/wolnelektury/settings/apps.py @@ -1,7 +1,8 @@ # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later. # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. -# -# These are the ones we should test. + +from machina import get_apps as get_machina_apps + INSTALLED_APPS_OUR = [ 'wolnelektury', # our @@ -46,6 +47,7 @@ INSTALLED_APPS_CONTRIB = [ 'django.contrib.admin', 'django.contrib.admindocs', 'django.contrib.staticfiles', + 'admin_ordering', 'rest_framework', 'fnp_django_pagination', 'pipeline', @@ -56,11 +58,12 @@ INSTALLED_APPS_CONTRIB = [ 'fnpdjango', 'getpaid', 'getpaid.backends.payu', - 'ssify', 'django_extensions', 'raven.contrib.django.raven_compat', 'club.apps.ClubConfig', + 'debug_toolbar', + # allauth stuff 'allauth', 'allauth.account', @@ -69,6 +72,11 @@ INSTALLED_APPS_CONTRIB = [ 'allauth.socialaccount.providers.facebook', 'allauth.socialaccount.providers.google', # 'allauth.socialaccount.providers.twitter', -] + + # Machina related apps: + 'mptt', + 'haystack', + 'widget_tweaks', +] + get_machina_apps() INSTALLED_APPS = INSTALLED_APPS_OUR + INSTALLED_APPS_CONTRIB