summaryrefslogtreecommitdiffstats
path: root/instruments/views.py
blob: 0329e008d0c5362c123be96423595632b3d764aa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# from django.shortcuts import render

from django.views.generic.list import ListView

from .models import SOP


class SOPListView(ListView):
    model = SOP
    paginate_by = 100