Add basic detail view for training record.

Only committing because I have other things to do
This commit is contained in:
Tom Price
2015-10-28 17:41:02 +00:00
parent 4689775a5f
commit 9379050e15

View File

@@ -1,3 +1,9 @@
from django.shortcuts import render
from django.views import generic
from training import models
# Create your views here.
class TrainingRecordDetailView(generic.DetailView):
model = models.TrainingRecord