{% extends 'base.html' %} {% block title %}Compañías{% endblock %} {% block page_title %}Compañías{% endblock %} {% block topbar_actions %} + Nueva Compañía {% endblock %} {% block content %}
{% for c in companies %}
{% if c.logo_path %} {% else %}
🏢
{% endif %}
{{ c.name }}
{{ c.vessel_count }} embarcación{{ 'es' if c.vessel_count != 1 else '' }}
{% if c.phone %}📞 {{ c.phone }}{% endif %} {% if c.email %}✉️ {{ c.email }}{% endif %} {% if c.address %}📍 {{ c.address }}{% endif %} {% if c.website %}🌐 {{ c.website }}{% endif %}
{% else %}
🏢
No hay compañías registradas.
{% endfor %}
{% endblock %}