{% extends "base.html" %} {% block title %}Artefatos — open-cognition{% endblock %} {% block content %}

Artefatos

{% if artifacts %}
{% for art in artifacts %}
{{ art.type }} {{ art.title }}
{% if art.topic_details %}
{% for t in art.topic_details %} {{ t.name }} {% endfor %}
{% endif %} {% if art.created %}

{{ art.created.strftime('%d/%m/%Y %H:%M') }}

{% endif %}
{% endfor %}
{% else %}

Nenhum artefato encontrado.

{% endif %} {% endblock %}