There has to be a way to do this... but I can't find it.
If I pass one dictionary to a template like so:
@app.route("/")
def my_route():
content = {'thing':'some stuff',
'other':'more stuff'}
return render_template('template.html', content=content)
This works fine in my template... but is there a way that I can drop the 'content.' , from
{{ content.thing }}
I feel like I have seen this before, but can't find it anywhere. Any ideas?