Statistics
| Branch: | Tag: | Revision:

root / pithos / settings.d / 00-apps.conf @ 9fefc052

History | View | Annotate | Download (675 Bytes)

1
# List of callables that know how to import templates from various sources.
2
TEMPLATE_LOADERS = (
3
    'django.template.loaders.filesystem.Loader',
4
    'django.template.loaders.app_directories.Loader',
5
)
6

    
7
MIDDLEWARE_CLASSES = (
8
    'django.middleware.common.CommonMiddleware',
9
    'pithos.middleware.LoggingConfigMiddleware',
10
    'pithos.middleware.AuthMiddleware'
11
)
12

    
13
ROOT_URLCONF = 'pithos.urls'
14

    
15
TEMPLATE_DIRS = (
16
    # Put strings here, like "/home/html/django_templates".
17
    # Always use forward slashes, even on Windows.
18
    # Don't forget to use absolute paths, not relative paths.
19
)
20

    
21
INSTALLED_APPS = (
22
    'pithos.api',
23
    'pithos.im',
24
    'pithos.ui',
25
    'south'
26
)