summaryrefslogtreecommitdiffstats
path: root/pyc/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyc/urls.py')
-rw-r--r--pyc/urls.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyc/urls.py b/pyc/urls.py
index 92c79c9..b65970e 100644
--- a/pyc/urls.py
+++ b/pyc/urls.py
@@ -4,8 +4,8 @@ from django.contrib import admin
admin.autodiscover()
urlpatterns = patterns('',
- url(r'^$', 'pyc.grader.views.index', name='index'),
- # url(r'^pyc/', include('pyc.foo.urls')),
+ url(r'^$', 'grader.views.index', name='index'),
+ url(r'^lab/(?P<lab_id>\d+)/$', 'grader.views.lab'),
# Uncomment the admin/doc line below to enable admin documentation:
# url(r'^admin/doc/', include('django.contrib.admindocs.urls')),