{% for action in story["undoneWindow"] %}
{{ action["text"] }}
{% endfor %}
{% if "worldInfo" in story and story["worldInfo"] %}
World info
{% for wi in story["worldInfo"] %}
{% if "keys" and "entry" in wi %}
{{ wi["keys"] }}: {{ wi["entry"] }}
{% endif %}
{% endfor %}
{% endif %}
{% for action in story["actions"] %}
{{ action["text"] }}
{% endfor %}
{% endblock %}