summaryrefslogtreecommitdiffstats
path: root/apps/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'apps/urls.py')
-rw-r--r--apps/urls.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/urls.py b/apps/urls.py
index e11cbd9..ac22547 100644
--- a/apps/urls.py
+++ b/apps/urls.py
@@ -18,13 +18,14 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
from django.conf.urls.defaults import *
+from patchwork.admin import admin_site
urlpatterns = patterns('',
# Example:
(r'^', include('patchwork.urls')),
# Uncomment this for admin:
- (r'^admin/', include('django.contrib.admin.urls')),
+ (r'^admin/(.*)', admin_site.root),
(r'^css/(?P<path>.*)$', 'django.views.static.serve',
{'document_root': '/home/jk/devel/patchwork/pwsite/htdocs/css'}),