{% extends "base.html" %} {% block title %}Persons - astro-mcp{% endblock %} {% block content %}
| Name | Nickname | Birth | Location | Gender | Status | |
|---|---|---|---|---|---|---|
| {{ p.name }} | {{ p.nickname or '—' }} | {{ p.birth_datetime[:10] if p.birth_datetime else '—' }} | {{ p.birthplace or '—' }} | {% if p.gender %} {{ p.gender }} {% else %} — {% endif %} | {% if p.alive %} alive {% else %} deceased {% endif %} {% if p.private %} private {% endif %} {% if p.birth_time_known == False %} time unknown {% endif %} | Edit Export |
No persons yet. Add one.