{% load doku_tags %} {% include "pyhub/_crispy_form.html" %} {% if doc_list is not None %} {% if not doc_list %} {% alert type="warning" %}조회 결과가 없습니다.{% endalert %} {% else %} {% alert type="info" %}{{ doc_list|length }}개의 문서를 찾았습니다.{% endalert %} {% endif %} {% for doc in doc_list %}
{% for key, value in doc.metadata.items %} {% if key != "image_descriptions" %} {{ key }}: {{ value }} {% endif %} {% endfor %}
{{ doc.page_content|linebreaks }}
{% endfor %} {% endif %}