{% extends "layout.html" %} {% block title %}钓鱼区域管理{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

钓鱼区域管理

管理游戏中的钓鱼区域。您可以创建、编辑、删除区域,并配置每个区域的详细参数。

{% for zone in zones %}

{{ zone.name }} (ID: {{ zone.id }})

描述: {{ 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 %}
限定鱼类 ({{ zone.specific_fish_ids|length }}): {% if zone.specific_fish_ids|length > 0 %} {% if zone.specific_fish_ids|length <= 5 %}
    {% for fish_id in zone.specific_fish_ids %} {% for fish in all_fish if fish.fish_id == fish_id %}
  • {{ fish.name }} (ID: {{ fish.fish_id }})
  • {% endfor %} {% endfor %}
{% else %}
    {% for fish_id in zone.specific_fish_ids %} {% for fish in all_fish if fish.fish_id == fish_id %}
  • {{ fish.name }} (ID: {{ fish.fish_id }})
  • {% endfor %} {% endfor %}
{% endif %} {% else %}

无 (使用全局鱼池)

{% endif %}
{% endfor %}
{% endblock %} {% block extra_js %} {% endblock %}