le75
clone your own copy | download snapshot

Snapshots | iceberg

Inside this repository

teaching_units.py
text/x-python

Download raw (200 bytes)

from django.conf.urls import url
from course.views import TeachingUnitDetailView


urlpatterns = [
    url(r'^ue/(?P<slug>[-\w]+)/$', TeachingUnitDetailView.as_view(), name='teaching-unit-detail'),
]