{% extends "layout.html" %} {% block title %}Entity information{% endblock %} {% block content %} {% if message is not none %}

{{ message | safe }}

{% endif %} {% if entities is not none %} {% for entity in entities %}
{% for key in ['uuid', 'parent', 'name', 'doap', 'lister_metadata', 'homepage', 'lister', 'description', 'type', 'last_id', 'generated', 'active', 'last_seen'] %} {% if entity[key] is not none %}
{{ key }}
{{ entity[key] }}
{% endif %} {% endfor %} {% if 'decoding_failures' in entity %}
(some decoding errors)
{% endif %} {% endfor %} {% endif %} {% endblock %}