not required as org filtering is done as part of the initial queryset within the model. !42
34 lines
584 B
Python
34 lines
584 B
Python
from core.views.common import IndexView
|
|
|
|
from itam.models.device_models import DeviceModel
|
|
|
|
|
|
|
|
class Index(IndexView):
|
|
|
|
model = DeviceModel
|
|
|
|
permission_required = [
|
|
'itam.view_devicetype'
|
|
]
|
|
|
|
template_name = 'settings/device_models.html.j2'
|
|
|
|
context_object_name = "list"
|
|
|
|
paginate_by = 10
|
|
|
|
|
|
def get_queryset(self):
|
|
|
|
return self.model.objects.filter().order_by('name')
|
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
|
context = super().get_context_data(**kwargs)
|
|
|
|
context['content_title'] = 'Device Models'
|
|
|
|
return context
|