{% extends "base.html" %} {% block title %}{{ person.name }} - astro-mcp{% endblock %} {% block content %}

{{ person.name }}

← Back
Edit Export

Basic Info

Full name {{ person.name }} Nickname {{ person.nickname or '—' }} Description {{ person.description or '—' }} Gender {% if person.gender %}{{ person.gender }}{% else %}—{% endif %} Status {% if person.alive %} alive {% else %} deceased {% endif %} {% if person.private %}private{% endif %}

Birth Data

Birth datetime {{ person.birth_datetime or '—' }} Birthplace {{ person.birthplace or '—' }} Latitude {{ person.latitude }} Longitude {{ person.longitude }} Elevation {{ person.elevation }} m Timezone {{ person.timezone or '—' }} Time known {% if person.birth_time_known %} yes {% else %} unknown / approximate {% endif %}
{% if person.notes %}

Notes

{{ person.notes }}

{% endif %}
ID {{ person.id }} Created {{ person.created_at or '—' }} Updated {{ person.updated_at or '—' }}
{% endblock %}