{% extends "base.html" %} {% block body %}
  • {{ story['title'] }}{{ story_number[story["title"]] }}
  • Undone window

    Description: {{ story["description"] }}
    Created at: {{ story["createdAt"] }}
    Updated at: {{ story["updatedAt"] }}
    Remember: {{ story["memory"] }}

    Author's note: {{ story["authorsNote"] }}

    {% 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 %}