{% extends 'layouts/app.html' %} {% import 'macros/form.html'as f with context %} {% import 'macros/modal-window.html' as modal with context %} {% import 'macros/rating.html' as r %} {% import 'macros/status.html' as s %} {% block body %}
Card image cap
{{ book.title }}

{{ book.desc }}

Genre:

{{ book.genre.title }}

Status: {{ s.render_status(book.status, book_id=book.id, genre=book.genre, title=book.title) }}

download send to telegram {% call modal.render_modal_window('DeleteBook'+ book.id|string,'library.delete_book', btn_class='danger', btn_comfirm_text='DELETE', title_form='DELETE BOOK', genre=book.genre.title, book_id=book.id, title=book.title) %}

Are you sure about that?

{% endcall %}

Rating

{{ r.rander_set_rating(book.rating, book) }}

Change status

{% for status in [('success','Done'), ('danger','Todo'),('warning','In progress'), ('secondary','Save')] %} {% call f.form_tag('library.change_status', genre=book.genre.title, book_id=book.id, title=book.title, status=status[1]) %} {% endcall %} {% endfor %}
{% block note %} {% endblock %}
{% endblock %}