blob: 37ec69f84cb69e511eabd1d4e2f088da77d1291f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
# from django.shortcuts import render
from django.contrib.auth.mixins import LoginRequiredMixin
from django.views.generic.list import ListView
from .models import SOP
class SOPListView(LoginRequiredMixin, ListView):
model = SOP
paginate_by = 100
|