2010-11-19 05:12:29 +00:00
|
|
|
from django.conf.urls.defaults import *
|
|
|
|
|
|
|
|
# Uncomment the next two lines to enable the admin:
|
2010-11-22 15:25:44 +00:00
|
|
|
from django.contrib import admin
|
|
|
|
admin.autodiscover()
|
2010-11-19 05:12:29 +00:00
|
|
|
|
|
|
|
urlpatterns = patterns('',
|
|
|
|
# Example:
|
|
|
|
# (r'^codereview/', include('codereview.foo.urls')),
|
|
|
|
(r'^$', 'codereview.dashboard.views.index'),
|
|
|
|
(r'^browser/', include('codereview.browser.urls')),
|
|
|
|
|
2010-12-08 13:28:57 +00:00
|
|
|
(r'^dashboard/', include('codereview.dashboard.urls')),
|
|
|
|
|
2010-11-19 05:12:29 +00:00
|
|
|
# Uncomment the admin/doc line below and add 'django.contrib.admindocs'
|
|
|
|
# to INSTALLED_APPS to enable admin documentation:
|
|
|
|
# (r'^admin/doc/', include('django.contrib.admindocs.urls')),
|
|
|
|
|
|
|
|
# Uncomment the next line to enable the admin:
|
2010-11-22 15:25:44 +00:00
|
|
|
(r'^admin/', include(admin.site.urls)),
|
2010-11-19 05:12:29 +00:00
|
|
|
)
|