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

Dúvidas

+ Nova dúvida
{% if doubts %}
{% for doubt in doubts %}
{% if doubt.status == 'open' %} aberta {% else %} resolvida {% endif %}

{{ doubt.content }}

{% if doubt.topic_name %} {{ doubt.topic_name }} {% endif %} {% if doubt.flashcard_id %} card: {{ doubt.flashcard_id[:8] }}... {% endif %} {% if doubt.created %} {{ doubt.created.strftime('%d/%m/%Y %H:%M') }} {% endif %}
{% if doubt.status == 'open' %}
{% endif %}
{% endfor %}
{% else %}

Nenhuma dúvida encontrada.

{% endif %} {% endblock %}