{% extends "base.html" %} {% block title %}In Person - {{ session.id }} - Personaut{% endblock %} {% block content %}

{{ situation.description or 'In Person Conversation' }}

👥 In Person 📍 {{ situation.location or 'Unknown location' }}
End Scene
The scene begins...
{% for entry in messages %}
{% if entry.type == 'action' %}

{{ entry.actor }} {{ entry.content }}

{% elif entry.type == 'dialogue' %}

{{ entry.speaker }}: "{{ entry.content }}"

{% elif entry.type == 'observation' %}

{{ entry.content }}

{% else %}

{{ entry.content }}

{% endif %}
{% endfor %}
{% endblock %} {% block scripts %} {% endblock %}