{% extends 'base.html' %} {% block title %}编辑图书 - {{ book.title }}{% endblock %} {% block head %} {% endblock %} {% block content %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %} {% endfor %} {% endif %} {% endwith %}
基本信息
{% if isbn_error %}
{{ isbn_error }}
{% endif %} ISBN必须是有效的10位或13位格式
图书简介
封面图片
{% if book.cover_url %} {{ book.title }} {% else %}
暂无封面
{% endif %}
库存与价格
{% endblock %} {% block scripts %} {% endblock %}