I have a dictionary in json that Im passing though into jinja using python. The page is not working not sure if this is the correct syntax
{% with open(jsonobject, 'r') as f
json_data = json.load(f)
for a, (b,c) in json_data.items() %}
--------------EDIT----------- This is a large dictionary within the json object being passed int which looks something like this
{"Dogs": [["spot"], 1], "Cats": [["whiskers"], 1], "fish": [["bubbles", "lefty", "tank", "goldie"], 4], "elephant": [["tiny", "spring"], 2], "zebra": [[], 1], "gazelle": [["red", "blue", "green", "yellow", "gold", "silver"], 6]}