Changelog for #9501, #9512

This commit is contained in:
Jeremy Stretch
2022-06-13 19:05:16 -04:00
parent e96c382138
commit 86c35a403a
2 changed files with 6 additions and 1 deletions

View File

@@ -259,9 +259,12 @@ HTTP_PROXIES = {
Default: `{}`
A dictionary of custom jinja2 filters with the key being the filter name and the value being a callable. For more information see the [jinja2 documentation](https://jinja.palletsprojects.com/en/3.1.x/api/#custom-filters). For example:
A dictionary of custom jinja2 filters with the key being the filter name and the value being a callable. For more information see the [Jinja2 documentation](https://jinja.palletsprojects.com/en/3.1.x/api/#custom-filters). For example:
```python
def uppercase(x):
return str(x).upper()
JINJA2_FILTERS = {
'uppercase': uppercase,
}