le75
clone your own copy | download snapshot

Snapshots | iceberg

Inside this repository

views.py
text/x-python

Download raw (307 bytes)

from course.models import TeachingUnit, Teacher, Orientation
from django.views.generic.detail import DetailView


class OrientationDetailView(DetailView):
    model = Orientation


class TeachingUnitDetailView(DetailView):
    model = TeachingUnit


class TeacherDetailView(DetailView):
    model = Teacher