{% extends "base.html" %} {% import "_macros.html" as m %} {% set masthead_bg = "var(--role-aggregate-a)" %} {% block title %}Sections — {{ cruise }}{% endblock %} {% block masthead_type %}Section index{% endblock %} {% block head_extra %} {% endblock %} {% block masthead_meta %}
Cruise
{{ cruise }}
{% if ship %}
Ship
{{ ship }}
{% endif %} {% if date_start %}
Departure
{{ date_start }}
{% endif %} {% if date_end %}
Arrival
{{ date_end }}
{% endif %} {% if duration_days %}
Duration
{{ duration_days }} d
{% endif %}
Sections
{{ sections|length }}
{% if casts_range %}
Casts per section
{{ casts_range }}
{% endif %}
{% endblock %} {% block content %} {% if sections_map_b64 %}

{{ m.heading_text(1, "Section tracks") }}

Sections overview map {{- m.dbg(sections_map_b64, "slot-half") }}
{% endif %}

{{ m.heading_text(2, "Sections") }}

{% for sec in sections %}

{{ sec.name }}

{{ sec.description }}
{{ sec.n_casts }} casts  ·  {{ sec.cast_range }}
{% if ladcp_configured %}
{% if sec.ladcp_has %}✓ LADCP{% else %}– LADCP{% endif %}
{% endif %} {% if sec.report_exists %} view section → {% else %} report not yet generated {% endif %}
{% endfor %}
{{ js_top_links | safe }} {% endblock %}