{% extends "base.html" %} {% block title %}Edit: {{ ind.name }} - Personaut{% endblock %} {% block content %}
{# ── Basic Info ── #}

👤 Basic Information

{# ── Background / Metadata ── #}

📋 Background & Context

{% for key, label, placeholder, input_type in metadata_fields %}
{% endfor %}
{# ── Physical Features ── #}

🧍 Physical Features

{% if current_physical %}▲{% else %}▼{% endif %}
{# ── Trait Profile ── #}

🧠 Personality Traits

{% for trait in traits %} {% set val = (current_traits.get(trait, 0.5) * 100)|int %}
{{ trait_labels[trait][0] }} {{ trait_labels[trait][1] }}
{{ val }}%
{% endfor %}
{# ── Emotional State ── #}

💛 Emotional State

{% for emotion in all_emotions %} {% set val = (current_emotions.get(emotion, 0.0) * 100)|int %}
{{ emotion|capitalize }}
{{ val }}%
{% endfor %}
Cancel
{% endblock %} {% block scripts %} {% endblock %}