{% extends "base.html" %} {% import "components/typography.html" as typography %} {% import "components/dropdown.html" as dropdown %} {% import "components/fields.html" as fields %} {% import "components/cards.html" as cards %} {% block main %} {{ typography::book_heading(book.title, book, show = false) }} {% call cards::card() %}
{{ t!("book.show.book_details") }}
{{ fields::field(t!("book.attributes.title"), book.title) }} {{ fields::field(t!("book.attributes.authors"), book.authors) }} {% match book.description %} {% when Some with (description) %} {{ fields::field(t!("book.attributes.description"), description) }} {% when None %} {{ fields::field(t!("book.attributes.description"), "-") }} {% endmatch %}
{{ t!("book.show.user_details") }}
{{ fields::field(t!("book.attributes.owner"), owner.name) }} {% match current_holder %} {% when Some with (current_holder) %} {{ fields::field(t!("book.attributes.current_holder"), current_holder.name) }} {% when None %} {{ fields::field(t!("book.attributes.current_holder"), "-") }} {% endmatch %}
{{ t!("book.show.more_informations") }}
{% match book.comment %} {% when Some with (comment) %} {{ fields::field(t!("book.attributes.comment"), comment) }} {% when None %} {{ fields::field(t!("book.attributes.comment"), "-") }} {% endmatch %}
{% endcall %} {% endblock %}