2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-19 13:35:40 +00:00

Add "hidden" property to global settings

- Allows certain settings to be hidden from the javascript files
This commit is contained in:
Oliver
2021-11-11 22:16:46 +11:00
parent 2f3772f3bf
commit 626637a06a
3 changed files with 18 additions and 3 deletions

View File

@ -251,6 +251,15 @@ def global_settings(*args, **kwargs):
return InvenTreeSetting.allValues()
@register.simple_tag()
def visible_global_settings(*args, **kwargs):
"""
Return any global settings which are not marked as 'hidden'
"""
return InvenTreeSetting.allValues(exclude_hidden=True)
@register.simple_tag()
def progress_bar(val, max, *args, **kwargs):
"""