{% extends "base.html" %} {% import "_macros.html" as m %} {% set masthead_bg = "var(--role-landing)" %} {% block title %}CTD Report — {{ cruise }}{% endblock %} {% block masthead_type %}CTD Report{% endblock %} {% block head_extra %} {% endblock %} {% block masthead_meta %}
Cruise
{{ cruise }}
{% if ship %}
Ship
{{ ship }}
{% endif %} {% if project %}
Project
{{ project }}
{% endif %} {% if date_start %}
Departure
{{ date_start }}
{% endif %} {% if date_end %}
Arrival
{{ date_end }}
{% endif %} {% if n_days %}
Duration
{{ n_days }} d
{% endif %}
CTD casts
{{ n_casts }}
Sections
{{ n_sections }}
Max depth
{{ max_depth_str }}
{% endblock %} {% block content %} {% if inventory_datasets %}
Data inventory: {% for d in inventory_datasets %}{{ d.label }}{% endfor %}
{% endif %} {% if station_pages_note %}

{{ station_pages_note }}

{% endif %} {{ m.report_body(report, center_sections=["map"]) }} {{ js_top_links | safe }} {% endblock %}