2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-08-07 20:32:12 +00:00

Helper tweaks (#10131)

* Enhance report tags

* Update docs
This commit is contained in:
Oliver
2025-08-05 14:37:01 +10:00
committed by GitHub
parent fb3b1fe116
commit b31e16eb98
3 changed files with 17 additions and 9 deletions

View File

@@ -280,10 +280,13 @@ Simple mathematical operators are available, as demonstrated in the example temp
{% add 1 3 %} <!-- Add two numbers together -->
{% subtract 4 3 %} <!-- Subtract 3 from 4 -->
{% multiply 1.2 3.4 %} <!-- Multiply two numbers -->
{% divide 10 2 as division_result %} <!-- Divide 10 by 2 -->
<!-- Perform a calculation and store the result -->
{% divide 10 2 as division_result %} <!-- Divide 10 by 2 -->
Division Result: {{ division_result }}
{% endraw %}
```