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

Title: {{searchedBook.title}}

Author: {# warning: searchfor isn't url encoded, it broke when I tried to use it #} {{searchedBook.author}}

Date: {{searchedBook.date}}

{% if bookOwned.isLent%} {% endif %}

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 %}
remove this book from my library I've lent this book to...
{%if friendsWithBook %}

Friends with this book

{%endif%}
Recommend this book to your friends on other sites |
{% endblock %}