Switch to unified view

a/OSSEval/OSSEval/settings.py b/OSSEval/OSSEval/settings.py
...
...
35
    'django.contrib.contenttypes',
35
    'django.contrib.contenttypes',
36
    'django.contrib.sessions',
36
    'django.contrib.sessions',
37
    'django.contrib.messages',
37
    'django.contrib.messages',
38
    'django.contrib.staticfiles',
38
    'django.contrib.staticfiles',
39
    'analysis',
39
    'analysis',
40
    'methodology',
41
    'OSProject',
40
    'OpenSourceProject',
42
    'report',
43
    'entity',
41
    'entity',
44
    'south',
45
)
42
)
46
43
47
MIDDLEWARE_CLASSES = (
44
MIDDLEWARE_CLASSES = (
48
    'django.contrib.sessions.middleware.SessionMiddleware',
45
    'django.contrib.sessions.middleware.SessionMiddleware',
49
    'django.middleware.common.CommonMiddleware',
46
    'django.middleware.common.CommonMiddleware',
...
...
117
# Static files for apps (CSS, JavaScript, Images)
114
# Static files for apps (CSS, JavaScript, Images)
118
# https://docs.djangoproject.com/en/1.6/howto/static-files/
115
# https://docs.djangoproject.com/en/1.6/howto/static-files/
119
STATIC_URL = '/static/'
116
STATIC_URL = '/static/'
120
117
121
TEMPLATE_DIRS = (
118
TEMPLATE_DIRS = (
122
    "/media/discoc/Dati/Lavoro/PROSE/Lavoro/OSSEval/OSSEval/templates"
119
    "templates"
123
)
120
)
124
121
125
STATICFILES_DIRS = (
122
STATICFILES_DIRS = (
126
    os.path.join(BASE_DIR, "static"),
123
    os.path.join(BASE_DIR, "static"),
127
)
124
)
128
129
130
125
131
# List of callables that know how to import templates from various sources.
126
# List of callables that know how to import templates from various sources.
132
TEMPLATE_LOADERS = (
127
TEMPLATE_LOADERS = (
133
    'django.template.loaders.filesystem.Loader',
128
    'django.template.loaders.filesystem.Loader',
134
    'django.template.loaders.app_directories.Loader',
129
    'django.template.loaders.app_directories.Loader',