{% extends "base.html" %} {% block title %}Situations - Personaut{% endblock %} {% block content %}
{% for sit in situations %}

{{ modality_icons.get(sit.modality, '📍') }} {{ modality_labels.get(sit.modality, sit.modality) }}

{% if sit.modality in ['in_person', 'phone_call', 'video_call'] %} ⚡ sync {% else %} 📨 async {% endif %}

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

{# Location & key context #}
{% if sit.location %} 📍 {{ sit.location }} {% endif %} {% if sit.context %} {% for key, value in sit.context.items() %} {{ key.replace('_', ' ').title() }}: {{ value }} {% endfor %} {% endif %}
{% else %}

No situations yet. Create your first interaction context!

{% endfor %}
{% endblock %}