2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-16 12:05:53 +00:00

Add InvenTreePluginViewMixin to PartIndex (#4843)

This commit is contained in:
IvoLealMCS
2023-05-17 16:04:37 +01:00
committed by GitHub
parent d5caa98936
commit 120a710ad4

View File

@ -27,7 +27,7 @@ from .models import Part, PartCategory
from .part import MakePartTemplate
class PartIndex(InvenTreeRoleMixin, ListView):
class PartIndex(InvenTreeRoleMixin, InvenTreePluginViewMixin, ListView):
"""View for displaying list of Part objects."""
model = Part