{% extends 'base.html' %} {% block title %}book title detail{% endblock title %} {% block content %} {% if messages %} {% for message in messages %} {% if 'info' in message.tags %} {% include 'components/alert.html' with is_info=True title="Success" body=message %} {% endif %} {% endfor %} {% endif %} {% include 'components/header.html' with title=object.title description='book title details' is_go_back=True %}
| # | title | book id | isbn | qr code | status | available | select | delete |
|---|---|---|---|---|---|---|---|---|
| {{forloop.counter}} | {{obj.title.title}} | {{obj.id}} | {{obj.isbn}} |
|
{% if obj.status %}{{obj.status}}{% else %}never rented{% endif %} | {% if obj.is_available %} {% else %} {% endif %} | {% include 'components/buttons/select_button.html' with href=obj.get_absolute_url %} | {% include 'components/buttons/delete_button.html' with href=obj.delete_object %} |