<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Notification Admin</title>
</head>
<body>
    <h1>Notification Admin</h1>
    <p>{{ message }}</p>
    
    {% if vendor is defined %}
        <p><strong>Vendeur :</strong> {{ vendor.storeName }}</p>
        <p><strong>Email :</strong> {{ vendor.user.email }}</p>
        <p><strong>Statut :</strong> {{ vendor.status }}</p>
    {% endif %}
    
    {% if payout is defined %}
        <p><strong>Demande de retrait :</strong> {{ payout.amount }} €</p>
        <p><strong>Méthode :</strong> {{ payout.method }}</p>
    {% endif %}
</body>
</html>