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

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

{% load md2 %}

{{ book.description | markdown:"tables, fenced-code-blocks, highlightjs-lang, cuddled-lists, break-on-newline, toc, markdown-in-html, strike" }}

{% if user == book.user or user.is_staff %} 수정 삭제 {% endif %} 책 목록
{% endblock %}