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

Persons

+ Add Person Export All Import
{% if persons %} {% for p in persons %} {% endfor %}
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
{% else %}

No persons yet. Add one.

{% endif %} {% endblock %}