le75
clone your own copy | download snapshot

Snapshots | iceberg

Inside this repository

teachers.py
text/x-python

Download raw (181 bytes)

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


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