{% extends "doku/base.html" %} {# blocks #} {% block content %}

Image List

{% partial list %}
{% endblock %} {# partials #} {# list 에서는 element 만을 반복 렌더링 #} {% partialdef list %} {% for vector_document_image in object_list %} {% partial element %} {% if is_paginated and forloop.last and page_obj.has_next %} {% endif %} {% endfor %} {% endpartialdef %} {% partialdef element %}
{{ vector_document_image.name }}
{{ vector_document_image.description|linebreaks }}
수정하기 삭제하기 새로고침
{% endpartialdef %}