{% extends "base.html" %} {% block title %}Comptes Outlook{% endblock %} {% block content %}

Comptes Outlook

{% if accounts %}
{% for account in accounts %} {% endfor %}
Email Statut Dernière connexion Actions
{{ account.email }} {% if account.connection_status == 'active' %} Actif {% elif account.connection_status == 'pending' %} En attente {% else %} {{ account.connection_status or 'Inconnu' }} {% endif %} {{ account.last_connected_at.strftime('%d/%m/%Y %H:%M') if account.last_connected_at else '-' }} Emails
{% else %}
Aucun compte Outlook configuré.
{% endif %}
{% endblock %}