{% extends "bookkeeper/base.html" %} {% block title %}Edit {{ book.title }} — Bookkeeper{% endblock %} {% block content %}
← Back to {{ book.title }}

Edit Book Details

{% if saved %}
Changes saved successfully.
{% endif %}
{% csrf_token %}
{% if form.title.errors %}{{ form.title.errors.0 }}{% endif %}
{% if form.author.errors %}{{ form.author.errors.0 }}{% endif %}
{% if form.description.errors %}{{ form.description.errors.0 }}{% endif %}
{% if form.publisher.errors %}{{ form.publisher.errors.0 }}{% endif %}
{% if form.published_date.errors %}{{ form.published_date.errors.0 }}{% endif %}
{% if form.isbn.errors %}{{ form.isbn.errors.0 }}{% endif %}
{% if form.language.errors %}{{ form.language.errors.0 }}{% endif %}
Cancel
{% endblock %}