{% extends "layout.html" %} {% block title %}钓鱼区域管理{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
管理游戏中的钓鱼区域。您可以创建、编辑、删除区域,并配置每个区域的详细参数。
描述: {{ zone.description }}
状态: {{ '启用' if zone.is_active else '禁用' }}
{% if zone.available_from or zone.available_until %}开放时间: {{ zone.available_from if zone.available_from else '不限' }} - {{ zone.available_until if zone.available_until else '不限' }}
{% endif %}稀有鱼每日配额: {{ zone.daily_rare_fish_quota }}
钓鱼消耗: {{ zone.fishing_cost }} 金币
{% if zone.requires_pass and zone.required_item_id %}通行证要求: {% for item in all_items if item.item_id == zone.required_item_id %} {{ item.name }} {% endfor %}
{% else %}通行证要求: 无需通行证
{% endif %}无 (使用全局鱼池)
{% endif %}