mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 05:22:16 +00:00
9 lines
197 B
Python
9 lines
197 B
Python
__author__ = 'Tom Price'
|
|
|
|
from django.conf.urls import patterns, url
|
|
from training import views
|
|
|
|
urlpatterns = patterns('',
|
|
url(r'user/(?P<pk>\d+)/$', views.UserTrainingRecordView.as_view())
|
|
)
|