Add django-sentry, remove debug-toolbar

This commit is contained in:
2011-05-30 21:17:57 +01:00
parent 62dd79097d
commit 1ec1f33693
4 changed files with 21 additions and 4 deletions

View File

@@ -35,5 +35,10 @@ if installed('groups'):
(r'^groups/', include('groups.urls')),
)
if installed('sentry'):
urlpatterns += patterns('',
(r'^sentry/', include('sentry.web.urls')),
)
if settings.DEBUG:
urlpatterns += staticfiles_urlpatterns()