Fundraising in PDF.
[wolnelektury.git] / src / wolnelektury / settings / apps.py
1 # This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Wolne Lektury. See NOTICE for more information.
3 #
4
5 INSTALLED_APPS_OUR = [
6     'wolnelektury',
7     # our
8     'ajaxable',
9     'annoy',
10     'api',
11     'catalogue',
12     'chunks',
13     'dictionary',
14     'education',
15     'experiments',
16     'infopages',
17     'lesmianator',
18     'messaging',
19     'newtagging',
20     'opds',
21     'pdcounter',
22     'pz',
23     'references',
24     'reporting',
25     'sponsors',
26     'stats',
27     'suggest',
28     'picture',
29     'social',
30     'waiter',
31     'search',
32     'oai',
33     'funding',
34     'polls',
35     'libraries',
36     'newsletter',
37     'contact',
38     'isbn',
39     'paypal',
40     'push',
41     'club',
42     'redirects',
43 ]
44
45 INSTALLED_APPS_CONTRIB = [
46     # Should be before django.contrib.admin
47     'modeltranslation',
48
49     # external
50     'django.contrib.auth',
51     'django.contrib.contenttypes',
52     'django.contrib.messages',
53     'django.contrib.sessions',
54     'django.contrib.sites',
55     'django.contrib.admin',
56     'django.contrib.admindocs',
57     'django.contrib.staticfiles',
58     'django.contrib.postgres',
59     'admin_ordering',
60     'rest_framework',
61     'fnp_django_pagination',
62     'pipeline',
63     'sorl.thumbnail',
64     'honeypot',
65     'fnpdjango',
66     'django_extensions',
67     'forms_builder.forms',
68     'django_countries',
69
70     'debug_toolbar',
71
72     # allauth stuff
73     'allauth',
74     'allauth.account',
75     'allauth.socialaccount',
76     'allauth.socialaccount.providers.openid',
77     'allauth.socialaccount.providers.facebook',
78     'allauth.socialaccount.providers.google',
79     # 'allauth.socialaccount.providers.twitter',
80 ]
81
82 INSTALLED_APPS = INSTALLED_APPS_OUR + INSTALLED_APPS_CONTRIB