{% extends "base.html" %} {% block body %}

{{ scenario["title"] }}

Created at: {{ scenario["createdAt"] }}
Updated at: {{ scenario["updatedAt"] }}

Description

{{ scenario["description"] }}

Prompt

{{ scenario["prompt"] }}

Remember

{{ scenario["memory"] }}

Author's Note

{{ scenario["authorsNote"] }} {% if "quests" in scenario and scenario["quests"] %}

Quests

{% for quest in scenario["quests"]["quest"] %}
{{ quest }} {% endfor %} {% endif %} {% if "options" in scenario %}

Options

{% endif %} {% if "worldInfo" in scenario and scenario["worldInfo"] %}

World Info

{% for wi in scenario["worldInfo"] %} {{ wi["keys"] }}: {{ wi["entry"] }} {% endfor %}
{% endif %}

Scripts

{% if "gameCode" in scenario and scenario["gameCode"] %} {% if "sharedLibrary" in scenario["gameCode"] %}

Shared library

		        {{ scenario["gameCode"]["sharedLibrary"] }}
		    
{% endif %} {% if "onInput" in scenario["gameCode"] %}

Input modifier

		    	{{ scenario["gameCode"]["onInput"] }}
			
{% endif %} {% if "onModelContext" in scenario["gameCode"] %}

Context modifier

				{{ scenario["gameCode"]["onModelContext"] }}
			
{% endif %} {% if "onOutput" in scenario["gameCode"] %}

Output modifier

		    	{{ scenario["gameCode"]["onOutput"] }}
			
{% endif %} {% endif %} {% endblock %}