{% extends "layout.html" %} {% block title %}Person{% endblock %} {% block content %} {% if message is not none %} {{ message }} {% endif %} {% if person is not none %}
Details on person {{ person_id }}: {% for key in ['name', 'email'] %} {% if person[key] is not none %}
{{ key }}
{{ person[key] }}
{% endif %} {% endfor %} {% if 'decoding_failures' in person %}
(some decoding errors)
{% endif %}
{% endif %} {% endblock %}