mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-18 05:52:15 +00:00
10 lines
212 B
Python
10 lines
212 B
Python
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
|