{% extends "inventory/base.html" %} {% load crispy_forms_tags %} {% block title %}{{ form_title }}{% endblock %} {% block content %}

{{ form_title }}

商品信息
商品名称: {{ check_item.product.name }}
商品条码: {{ check_item.product.barcode }}
商品分类: {{ check_item.product.category.name }}
盘点信息
盘点名称: {{ inventory_check.name }}
系统数量: {{ check_item.system_quantity }}
状态: {% if inventory_check.status == 'in_progress' %} {{ inventory_check.get_status_display }} {% endif %}
{% csrf_token %} {{ form|crispy }}
返回
{% endblock %}