{% extends "book/layouts/base.html" %} {% block content %} {% if messages %} {% for message in messages %}
{{ message }}
{% endfor %} {% endif %}
책 등록
{% for book in object_list %}
{{ book.title }}

• {{ book.author }}{% if book.translator %} (번역: {{ book.translator }}{% endif %} • {{ book.publisher }} {% if book.pub_date %} • {{ book.pub_date }}{% endif %} [M] {% if book.disclosure %}공개{% else %}비공개{% endif %}

{% empty %}

등록된 책이 없습니다.

{% endfor %}
{% if is_paginated %} {# to_first_last :: 맨처음 / 맨끝으로 버튼 사용 여부 #} {# page_class ex:: pagination-rounded pagination-sm pagination-lg justify-content-center justify-content-end #} {% include 'partials/pagination.html' with page_class="" to_first_last="" %} {% endif %}
{% endblock %}