Is it possible to import a Python module into a Jinja template so I can use its functions? For example, I have a format.py file that contains methods for formatting dates and times. In a Jinja macro, can I do something like the following? {% from 'dates/format.py' import timesince %} {% macro time(mytime) %} <a title="{{ mytime }}">{{ timesince(mytime) }}</a> {% endmacro %} Because format.py is no
