Start building a page to select items based on category.

Requires some new CSS for the side nav.
This commit is contained in:
Tom Price
2016-01-05 20:03:16 +00:00
parent d62fcc8483
commit c0c2314fbe
5 changed files with 9283 additions and 4 deletions

View File

@@ -5,5 +5,6 @@ from training import views
urlpatterns = patterns('',
url(r'^$', views.SelfUserTrainingRecordView.as_view()),
url(r'user/(?P<pk>\d+)/$', views.UserTrainingRecordView.as_view())
url(r'user/(?P<pk>\d+)/$', views.UserTrainingRecordView.as_view()),
url(r'item/', views.TrainingCategoryItemListView.as_view()),
)