# from django.shortcuts import render from django.views.generic.list import ListView from .models import SOP class SOPListView(ListView): model = SOP paginate_by = 100