{% if full_page %} 市场监控 — PolyWeather

🔥 市场监控

更新 {{ generated_at }}
{% endif %}
{% for c in cities %}
{{ c.display_name }} / {{ c.airport }} {{ c.local_time }} {% if c.new_high %} ◆新高 {% endif %}
{% match c.current_temp %} {% when Some with (t) %} {{ "{:.1}"|format(t) }}°C {% when None %} -- {% endmatch %}
今日最高 {% match c.today_max %} {% when Some with (m) %} {{ "{:.1}"|format(m) }}°C {% when None %} -- {% endmatch %}
趋势 {{ c.trend.symbol() }}
{% if !c.runway_pairs.is_empty() %}
{% for (pair, temp) in c.runway_pairs %}
{{ pair }} {{ "{:.1}"|format(temp) }}°C
{% endfor %}
{% endif %}
{% endfor %}
刷新中…
{% if full_page %}
{% endif %}