{% extends "base.html" %} {% block title %}水果品类管理 - 总部{% endblock %} {% block content %}
新增水果品类
当前水果品类({{ fruits|length }} 种)
{% for f in fruits %} {% endfor %}
# 水果名称 单位 添加时间 操作
{{ loop.index }} {{ f.name }} {{ f.unit }} {{ f.created_at[:10] }}
{% endblock %} {% block extra_scripts %} {% endblock %}