{% extends "site.html" %} {% block title%} Idle Library - {{book.name}} {%endblock%} {% block content %} {% if searchedBook.coverUrl %} {% endif %}

Title: {{searchedBook.title}}

Author: {{searchedBook.author}}

Date: {{searchedBook.date}}

Description: {{searchedBook.description}}

{% if borrowedFrom %} You have borrowed this book from {% for borrow in borrowedFrom %}
{{borrow.owner.username}}
{{borrow.borrowedDays}} day{{ borrow.borrowedDays|pluralize }} ago {% endfor %} {% endif %} {% if requestedFrom %} You have requested this book from {% for bookrequest in requestedFrom %}
{{bookrequest.userbook.owner.username}}
{% endfor %} {% endif %}
I have this book!
{%if friendsWithBook %}

Friends with this book

{%endif%} {% endblock %}