{% extends "base.html" %} {% block title %}Usuarios — MarineInvoice Pro{% endblock %} {% block content %}

Usuarios

Gestión de accesos por compañía

{% if users %} {% for u in users %}

{{ u.full_name or u.username }} {{ u.role }}

@{{ u.username }} {% if u.smtp_user %} · 📧 {{ u.smtp_user }}{% elif u.email %} · {{ u.email }}{% endif %} {% if u.email_title %} · {{ u.email_title }}{% endif %} {% if u.company %} · 🏢 {{ u.company.name }}{% endif %}

{% if u.id != current_user.id %} {% endif %}
{% endfor %} {% else %}
👤

No hay usuarios

{% endif %}
{% endblock %} {% block scripts %} {% endblock %}