{% extends 'base.html' %} {% load get_status_text %} {% block title %} rental history {% 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.title description=object.title.publisher.name %} {% if object %} {% if object_list %}
{% for obj in object_list %} {% endfor %}
# customer id isbn status start end return is closed
{{forloop.counter}} {{obj.customer.username}} {{obj.book.id}} {{obj.book.isbn}} {{obj.status|get_status_text}} {{obj.rent_start_date}} {{obj.rent_end_date}} {% if obj.return_date %}{{obj.return_date}}{% else %}-{% endif %} {% if obj.is_closed %} {% else %} {% endif %}
download
{% else %} no rental data {% endif %} {% else %} no book found {% endif %} {% endblock content %}