fix contact ungleich
This commit is contained in:
parent
88e6d068b6
commit
05e752625e
49 changed files with 195 additions and 159 deletions
|
|
@ -106,8 +106,7 @@ INSTALLED_APPS = (
|
|||
'ungleich_page',
|
||||
'hosting',
|
||||
'digitalglarus',
|
||||
'django_extensions',
|
||||
'debug_toolbar'
|
||||
|
||||
)
|
||||
|
||||
MIDDLEWARE_CLASSES = (
|
||||
|
|
|
|||
|
|
@ -14,3 +14,8 @@ CACHES = {
|
|||
}
|
||||
|
||||
MIDDLEWARE_CLASSES+=("debug_toolbar.middleware.DebugToolbarMiddleware",)
|
||||
|
||||
INSTALLED_APPS+=(
|
||||
'django_extensions',
|
||||
'debug_toolbar'
|
||||
)
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@ from django.conf.urls.static import static
|
|||
from django.conf import settings
|
||||
from hosting.views import RailsHostingView, DjangoHostingView, NodeJSHostingView
|
||||
from membership import urls as membership_urls
|
||||
import debug_toolbar
|
||||
|
||||
urlpatterns = [
|
||||
url(r'^hosting/', include('hosting.urls', namespace="hosting")),
|
||||
|
|
@ -28,7 +29,7 @@ urlpatterns += i18n_patterns('',
|
|||
url(r'^ungleich_page/',
|
||||
include('ungleich_page.urls', namespace='ungleich_page'),
|
||||
name='ungleich_page'),
|
||||
url(r'^blog/',include('ungleich.urls',namespace='ungleich')),
|
||||
url(r'^blog/', include('ungleich.urls', namespace='ungleich')),
|
||||
url(r'^', include('cms.urls'))
|
||||
)
|
||||
|
||||
|
|
@ -39,3 +40,4 @@ if settings.DEBUG:
|
|||
'document_root': settings.MEDIA_ROOT,
|
||||
}),
|
||||
)
|
||||
urlpatterns += patterns('',url(r'^__debug__/', include(debug_toolbar.urls)))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue