le75
clone your own copy | download snapshot

Snapshots | iceberg

Inside this repository

orientations.py
text/x-python

Download raw (193 bytes)

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


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