{% extends "base.html" %} {% set masthead_bg = "#2980b9" %} {% block title %}CTD Report — {{ cruise }}{% endblock %} {% block masthead_type %}CTD Report{% 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 fig_map_b64 %}Map{% endif %} {% if physics_panels | selectattr("b64") | list %}Hydrography{% endif %} {% if biogeo_panels | selectattr("b64") | list %}Biogeochemistry{% endif %} {% if ts_b64 %}T–S diagram{% endif %}
{% if fig_map_b64 %}

Map

Station map
{% endif %} {% if physics_panels | selectattr("b64") | list %}

Hydrography

{% for panel in physics_panels %}{% if panel.b64 %}

{{ panel.title }}

{{ panel.title }}
{% endif %}{% endfor %} {% endif %} {% if biogeo_panels | selectattr("b64") | list %}

Biogeochemistry

{% for panel in biogeo_panels %}{% if panel.b64 %}

{{ panel.title }}

{{ panel.title }}
{% endif %}{% endfor %} {% endif %} {% if ts_b64 %}

T-S diagram

All downcast profiles

Cruise T-S diagram
{% endif %} {{ js_top_links | safe }} {% endblock %}