This commit is contained in:
Eden Kirin
2024-04-06 10:08:29 +02:00
parent 1e154423cb
commit 4e05dc15a5
9 changed files with 105 additions and 29 deletions

8
project/jinja2env.py Normal file
View File

@ -0,0 +1,8 @@
from jinja2 import Environment
def environment(**options):
env = Environment(**options)
env.globals.update({})
return env