{% extends 'base.html' %} {% load static %} {% block scripts %} {% endblock scripts %} {% block title %}book detail{% endblock title %} {% block content %} {% include 'components/header.html' with title=object.title.title description=object.title.publisher.name is_go_back=True %}
{% if object.is_available %} rent {% if object.status %} {{object.status}} {% else %} never rented {% endif %} {% else %} not available {% endif %}
{{object.isbn}}
{% if not object.is_available %} change status {% endif %} history
{{object.id}}
{% endblock content %}