class SubcategoriesListView(ListView): model = Subcategory template_name = 'app/categories/index.html' def get_queryset(self): return Subcategory.objects.filter(category_id=self.kwargs['category_id'])