2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-30 08:31:34 +00:00

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

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
InvenTree
plugin
templates
js

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