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