{% extends 'base.html' %} {% block title %}Edit Book{% endblock %} {% block header %}Edit book{% endblock %} {% block body %} {% for field_name, field_errors in form.errors.items() %} {% for error in field_errors %}
{{ error }}
{% endfor %} {% endfor %}

Note: you can't change the language or text of a book after it has been created. If you need to do that, please create a new book instead, and delete the old one.

{{ form.hidden_tag() }} {# Tags li entries are managed by tagit. #}
{{ form.title.label }} {{ form.title(class="form-control") }}
{{ form.source_uri.label }} {{ form.source_uri(class="form-control") }}
Tags
    {% for t in form.book_tags %}
  • {{ t.object_data }}
  • {% endfor %}
{% endblock %}