{% extends 'base.html' %} {% block title %}Embarcaciones{% endblock %} {% block page_title %}Embarcaciones{% endblock %} {% block topbar_actions %} + Nueva Embarcación {% endblock %} {% block head %} {% endblock %} {% block content %}
{% for v in vessels %} {% else %} {% endfor %}
NombreTipoMarca/ModeloAñoPropietarioCapitánWOs
{{ v.name }} {{ v.vessel_type or '—' }} {{ v.make or '' }} {{ v.model or '' }} {{ v.year or '—' }} {{ v.owner_name or '—' }} {{ v.captain_name or '—' }} {{ v.wo_count or 0 }} Historial ✏️
Sin embarcaciones.
{% for v in vessels %}
🚢 {{ v.name }}
{{ v.vessel_type or '—' }} {% if v.year %}· {{ v.year }}{% endif %}
{{ v.wo_count or 0 }} WOs
{% if v.make or v.model %}Marca/Modelo:{{ v.make or '' }} {{ v.model or '' }}{% endif %}
{% if v.owner_name %}Propietario:{{ v.owner_name }}{% endif %} {% if v.captain_name %}Capitán:{{ v.captain_name }}{% endif %}
{% if v.engine_hours %}
⚙️ {{ v.engine_hours }} h motor
{% endif %}
{% else %}
Sin embarcaciones registradas.
{% endfor %}
{% endblock %} {% block scripts %} {% endblock %}