{% extends "doku/base.html" %} {% load doku_tags %} {# blocks #} {% block content %} {{ document }} {% if not vectordocument_list %} {% alert type="warning" %}조회된 Vector Document가 없습니다.{% endalert %} {% endif %} {% partial list %} {% endblock content %} {# partials #} {# list 에서는 element 만을 반복 렌더링 #} {% partialdef list %} {% for object in vectordocument_list|dictsort:"metadata.page" %} {% partial element %} {% if is_paginated and forloop.last and page_obj.has_next %} {% endif %} {% endfor %} {% endpartialdef %} {% partialdef element %}
{{ object.metadata.page }} 페이지 {# {{ object.metadata.category }} #}
{% for key, value in object.metadata.items %} {% if key != "image_descriptions" %} {{ key }}: {{ value }} {% endif %} {% endfor %}
{{ object.page_content|doku_minimum_style|linebreaks }}
{% if object.image_count > 0 %}
{% endif %}
수정 삭제 새로고침
{% endpartialdef %}