2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-18 13:05:42 +00:00

Allow plugin list to be filtered by "sample" or "builtin" status (#5647)

This commit is contained in:
Oliver
2023-10-03 10:39:24 +11:00
committed by GitHub
parent 6a48eaeec8
commit 352fb4f6ff
2 changed files with 35 additions and 0 deletions

View File

@ -463,6 +463,14 @@ function getPluginTableFilters() {
type: 'bool',
title: '{% trans "Active" %}',
},
builtin: {
type: 'bool',
title: '{% trans "Builtin" %}',
},
sample: {
type: 'bool',
title: '{% trans "Sample" %}',
},
};
}