10 lines
273 B
Python
10 lines
273 B
Python
from django.conf.urls.defaults import patterns, url
|
|
|
|
# Uncomment the next two lines to enable the admin:
|
|
# from django.contrib import admin
|
|
# admin.autodiscover()
|
|
|
|
urlpatterns = patterns('cms.views',
|
|
url(r'^(?P<course>[^/]+)/calendar/', 'calendar', name='calendar'),
|
|
)
|