A template file:
{% extends "base.html" %}
The templates are loaded like the following:
env = Environment(loader = FileSystemLoader(['_templates']))
template = env.get_template('test.html')
How can I get the parent template object, i.e., the template of "base.html", from the template
variable?