{% extends "base.html" %} {% block title %}{{ label }} - Personaut{% endblock %} {% block content %} {# Modality hero #}
{{ icon }}

{{ label }}

{% if mod_info %}

{{ mod_info.desc }}

{% if mod_info.sync %}⚡ Synchronous{% else %}📨 Asynchronous{% endif %} {% if mod_info.visual %}👁 Visual cues{% endif %} {% if mod_info.audio %}🔊 Audio cues{% endif %} 📐 {{ mod_info.formality }}
{% endif %}
{# Description #}

Description

{{ sit.description or 'No description provided' }}

{# Location #} {% if sit.location %}

📍 Location

{{ sit.location }}

{% endif %} {# Context #} {% if sit.context %}

🌤️ Situational Context

{% for key, value in sit.context.items() %}
{{ key.replace('_', ' ') }} {{ value }}
{% endfor %}
{% endif %}
← Back to list
{% endblock %}