{% extends 'base.html' %} {% load widget_tweaks %} {% block title %} update status {% 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="Update rental status" description=object.book.id is_go_back=True %} {% if object.is_closed %} The rental status is closed {% else %}
{% csrf_token %}
{{ form.status|add_class:'bg-slate-100 dark:bg-slate-300 text-slate-800 rounded p-2 w-full' }}
{% endif %} {% endblock content %}