{% extends "base.html" %} {% import "_macros.html" as m %} {% block title %}Stack report – {{ mooring_name }}{% endblock %} {% block page_styles %} :root { --accent:#2980b9; --accent-link:#cef; } /* No width here: the slot class sets each figure's width (U0.2); width:100% would override the slot and force full-width. */ .fig { border:1px solid var(--rule); border-radius:var(--radius-btn); margin-bottom:1.5rem; } /* .var-table / .instr-table drop to the canonical emit_css table style. */ {% endblock %} {% block masthead_type %}Stacked{% endblock %} {% block masthead_meta %}
Cruise
{{ cruise }}
Ship
{{ ship }}
Latitude
{{ latitude }}
Longitude
{{ longitude }}
Water depth
{{ waterdepth }}{% if waterdepth != '—' %} m{% endif %}
Deployment
{{ deploy_time }}
Recovery
{{ recover_time }}
Duration
{{ duration }}
Samp. Δt
{{ dt_seconds }}{% if dt_seconds != '—' %} s{% endif %}
Records
{{ n_time }}
Instruments
{{ n_instr }}
Source file
{{ nc_file }}
{% endblock %} {% block content %} {{ m.report_body(report, "deployment", generated, cruise) }} {% endblock %}