{% extends "base.html" %} {% block title %}{{ mooring_name }} – Mooring Recovery Table{% endblock %} {% block masthead_class %}masthead-plain{% endblock %} {% block masthead_title %}{{ mooring_name }} ({{ year }}){% endblock %} {% block masthead_type %}Mooring Recovery{% endblock %} {% block masthead_nav %}{% endblock %} {% block masthead_meta %} {% if latitude %}
Latitude
{{ latitude }}
{% endif %} {% if longitude %}
Longitude
{{ longitude }}
{% endif %}
Water depth
{{ waterdepth }} m
Deployment
{{ deploy_time }}
Recovery
{{ recover_time }}
Duration
{{ duration }}
{% endblock %} {% block page_styles %} table { border-collapse: collapse; width: 100%; font-size: 9.5pt; } th { background: var(--ocean); color: #fff; padding: 0.35rem 0.5rem; text-align: left; font-weight: bold; vertical-align: bottom; white-space: pre-line; } th.num { text-align: right; } td { padding: 0.28rem 0.5rem; border-bottom: 1px solid #ccc; vertical-align: top; } tr:nth-child(even) td { background: var(--seafoam); } tr.nonlog td { background: #f0f0f0; font-style: italic; color: #444; border-bottom: 1px solid #aaa; } td.ts { font-size: 8.5pt; white-space: pre; font-family: monospace; } td.drift { font-family: monospace; font-size: 9pt; text-align: center; } td.star { text-align: center; font-weight: bold; } .notes { margin-top: 1.2rem; font-size: 9.5pt; } .notes h3 { font-size: 10pt; margin-bottom: 0.4rem; } .notes dl { margin: 0; } .notes dt { font-weight: bold; margin-top: 0.4rem; } .notes dd { margin: 0 0 0.2rem 1.2rem; } .footer { margin-top: 1.5rem; font-size: 8.5pt; color: #888; border-top: 1px solid #ddd; padding-top: 0.5rem; } @media print { body { padding: 0; max-width: 100%; font-size: 9pt; } th { -webkit-print-color-adjust: exact; print-color-adjust: exact; } table { page-break-inside: auto; } tr { page-break-inside: avoid; } .footer { display: none; } } {% endblock %} {% block content %} {% for row in rows %} {% if row.nonlog %} {% else %} {% endif %} {% endfor %}
Height (above bottom) (m) Depth (nominal) (m) Instrument Param. Sample int. (s) Start/stop time UTC Clock drift First good / Last good record Notes
{{ row.hab if row.hab is not none else "" }} {{ row.depth if row.depth is not none else "" }} {{ row.description }}
{{ row.hab if row.hab is not none else "?" }} {{ row.depth if row.depth is not none else "?" }} {{ row.instrument }} {{ row.params }} {{ row.interval_s if row.interval_s else "" }} {{ row.start_stop }} {{ row.clock_drift }} {{ row.first_last }} {{ "*" if row.comment else "" }}
{% if comments %}

Notes

{% for c in comments %}
SN {{ c.serial }} ({{ c.instrument }}, {{ c.depth_str }})
{{ c.comment }}
{% endfor %}
{% endif %} {% endblock %}