{% extends "layout.html" %} {% block title %}鱼类管理{% endblock %} {% block content %}

鱼类管理

下载CSV模板
{% for item in fishes %} {% endfor %}
ID 名称 稀有度 价值 重量范围 (g) 描述 操作
{{ item.fish_id }} {{ item.name }} {{ '★' * item.rarity }} {{ item.base_value }} {{ item.min_weight }} - {{ item.max_weight }} {{ item.description or '无' }}
{% endblock %} {% block extra_js %} {% endblock %}