{% extends "base.html" %} {% block title %}{{ ts_name }}{% if ts_description %} — {{ ts_description }}{% endif %} — {{ cruise }}{% endblock %} {% block masthead_title %}{{ ts_name }}{% if ts_description %} — {{ ts_description }}{% endif %}{% endblock %} {% block masthead_type %}Timeseries{% endblock %} {% block head_extra %} {% endblock %} {% block topbar %}
{% endblock %} {% block masthead_meta %}
Cruise
{{ cruise }}
Ship
{{ ship }}
CTD casts
{{ n_casts }}
Start
{{ time_start_str }}
End
{{ time_end_str }}
Duration
{{ duration_str }}
{% endblock %} {% block content %}
{% if fig_location_b64 %}Map{% endif %} {% if physics_panels | selectattr("b64") | list %}Hydrography{% endif %} {% if biogeo_panels | selectattr("b64") | list %}Biogeochemistry{% endif %} {% for card in extra_cards %}{{ card.short }}{% endfor %}
{% for cn in cast_nums %} {{ cn }} {% endfor %}
{% macro ts_panel_group(panels, slot, anchor, heading) %} {% if panels | selectattr("b64") | list %} {% if heading %}

{{ heading }}

{% endif %} {% if slot == "slot-third" %}
{% for panel in panels %}{% if panel.b64 %}
{{ panel.title }}
{{ panel.title }}
{% endif %}{% endfor %}
{% elif slot == "slot-half" %} {% for row in panels | batch(2, None) %}
{% for panel in row %}{% if panel and panel.b64 %}
{{ panel.title }}
{{ panel.title }}
{% endif %}{% endfor %}
{% endfor %} {% else %} {% for panel in panels %}{% if panel.b64 %}
{{ panel.title }}
{{ panel.title }}
{% endif %}{% endfor %} {% endif %} {% endif %} {% endmacro %} {% if fig_location_b64 %}

Map

Yoyo location map
{% endif %} {{ ts_panel_group(physics_panels, ts_slot, "s-physics", "Hydrography") }} {{ ts_panel_group(biogeo_panels, ts_slot, "s-biogeo", "Biogeochemistry") }} {% if not physics_panels and not biogeo_panels %}

No data available for these casts.

{% endif %} {% for card in extra_cards %}

{{ card.title }}

{% if card.id == "ts" %}
{% for panel in card.panels %}{% if panel.b64 %}
{{ panel.title }}
{{ panel.title }}
{% endif %}{% endfor %}
{% else %} {{ ts_panel_group(card.panels, ts_slot, "", "") }} {% endif %} {% endfor %} {{ js_top_links | safe }} {% endblock %}