Bootstrap templates

- event mockup
- login page
This commit is contained in:
Martin Bauer
2013-06-02 16:00:01 +02:00
parent d29100a692
commit a923ecea6f
346 changed files with 62898 additions and 11 deletions

View File

@@ -120,6 +120,16 @@ TEMPLATE_DIRS = (
# Don't forget to use absolute paths, not relative paths.
)
TEMPLATE_CONTEXT_PROCESSORS = (
'django.contrib.auth.context_processors.auth',
'django.core.context_processors.i18n',
'django.core.context_processors.request',
'django.core.context_processors.media',
'django.core.context_processors.static',
'sekizai.context_processors.sekizai',
)
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
@@ -132,7 +142,11 @@ INSTALLED_APPS = (
# Uncomment the next line to enable admin documentation:
'django.contrib.admindocs',
'crispy_forms',
'musicians'
'musicians',
'eventplanner',
'locpick',
'sekizai',
'intern_area',
)
CRISPY_TEMPLATE_PACK = 'bootstrap'
@@ -186,4 +200,7 @@ LOGGING = {
'level': 'DEBUG',
},
}
}
}
GEOS_LIBRARY_PATH = PROJECT_PATH + '/libgeos_c.so.1.7.8'