Files
inventory/templates/index.html
2026-03-08 00:52:03 +08:00

32 lines
935 B
HTML

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>库存系统 - 大盒列表</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
</head>
<body>
<header class="hero">
<h1>电子元件库存管理 v1.0</h1>
<a class="btn" href="{{ url_for('scan_page') }}">扫码/搜索</a>
</header>
<main class="container">
<h2>大盒列表</h2>
<section class="box-list">
{% for item in box_cards %}
<article class="box-card">
<h3>{{ item.box.name }}</h3>
<p>{{ item.box.description or '暂无描述' }}</p>
<p>已使用: {{ item.used_count }}/28</p>
<a class="btn" href="{{ url_for('view_box', box_id=item.box.id) }}">进入 28 宫格</a>
</article>
{% else %}
<p>暂无大盒数据,请先初始化数据库。</p>
{% endfor %}
</section>
</main>
</body>
</html>