210 lines
5.9 KiB
HTML
210 lines
5.9 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="fr">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<title>Transcript - Ticket #1461089849527505151</title>
|
||
|
|
<style>
|
||
|
|
* {
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
box-sizing: border-box;
|
||
|
|
}
|
||
|
|
body {
|
||
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
||
|
|
background: #f5f6fa;
|
||
|
|
color: #2c3e50;
|
||
|
|
line-height: 1.6;
|
||
|
|
}
|
||
|
|
.container {
|
||
|
|
max-width: 900px;
|
||
|
|
margin: 0 auto;
|
||
|
|
padding: 20px;
|
||
|
|
}
|
||
|
|
.header {
|
||
|
|
background: linear-gradient(135deg, #3498db, #34495e);
|
||
|
|
color: white;
|
||
|
|
padding: 30px;
|
||
|
|
border-radius: 10px;
|
||
|
|
margin-bottom: 20px;
|
||
|
|
}
|
||
|
|
.header h1 {
|
||
|
|
font-size: 24px;
|
||
|
|
margin-bottom: 10px;
|
||
|
|
}
|
||
|
|
.header-meta {
|
||
|
|
display: flex;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
gap: 20px;
|
||
|
|
font-size: 14px;
|
||
|
|
opacity: 0.9;
|
||
|
|
}
|
||
|
|
.meta-item {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
gap: 5px;
|
||
|
|
}
|
||
|
|
.status-badge {
|
||
|
|
display: inline-block;
|
||
|
|
padding: 3px 10px;
|
||
|
|
border-radius: 15px;
|
||
|
|
font-size: 12px;
|
||
|
|
font-weight: bold;
|
||
|
|
text-transform: uppercase;
|
||
|
|
}
|
||
|
|
.status-open { background: #27ae60; }
|
||
|
|
.status-closed { background: #e74c3c; }
|
||
|
|
.status-claimed { background: #f39c12; }
|
||
|
|
|
||
|
|
.messages-section {
|
||
|
|
background: white;
|
||
|
|
border-radius: 10px;
|
||
|
|
padding: 20px;
|
||
|
|
margin-bottom: 20px;
|
||
|
|
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
|
||
|
|
}
|
||
|
|
.messages-section h3 {
|
||
|
|
margin-bottom: 15px;
|
||
|
|
color: #3498db;
|
||
|
|
border-bottom: 2px solid #ecf0f1;
|
||
|
|
padding-bottom: 10px;
|
||
|
|
}
|
||
|
|
.message {
|
||
|
|
padding: 15px;
|
||
|
|
border-bottom: 1px solid #ecf0f1;
|
||
|
|
}
|
||
|
|
.message:last-child {
|
||
|
|
border-bottom: none;
|
||
|
|
}
|
||
|
|
.message.staff-message {
|
||
|
|
background: #f8f9fa;
|
||
|
|
border-left: 3px solid #3498db;
|
||
|
|
}
|
||
|
|
.message-header {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
gap: 10px;
|
||
|
|
margin-bottom: 8px;
|
||
|
|
}
|
||
|
|
.author {
|
||
|
|
font-weight: bold;
|
||
|
|
color: #2c3e50;
|
||
|
|
}
|
||
|
|
.staff-badge {
|
||
|
|
background: #3498db;
|
||
|
|
color: white;
|
||
|
|
padding: 2px 6px;
|
||
|
|
border-radius: 3px;
|
||
|
|
font-size: 10px;
|
||
|
|
font-weight: bold;
|
||
|
|
}
|
||
|
|
.timestamp {
|
||
|
|
color: #95a5a6;
|
||
|
|
font-size: 12px;
|
||
|
|
}
|
||
|
|
.message-content {
|
||
|
|
color: #34495e;
|
||
|
|
word-break: break-word;
|
||
|
|
}
|
||
|
|
|
||
|
|
.stats-section {
|
||
|
|
background: white;
|
||
|
|
border-radius: 10px;
|
||
|
|
padding: 20px;
|
||
|
|
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
|
||
|
|
}
|
||
|
|
.stats-section h3 {
|
||
|
|
margin-bottom: 15px;
|
||
|
|
color: #3498db;
|
||
|
|
}
|
||
|
|
.stats-grid {
|
||
|
|
display: grid;
|
||
|
|
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
|
||
|
|
gap: 15px;
|
||
|
|
}
|
||
|
|
.stat-item {
|
||
|
|
background: #f8f9fa;
|
||
|
|
padding: 15px;
|
||
|
|
border-radius: 8px;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
.stat-label {
|
||
|
|
display: block;
|
||
|
|
font-size: 12px;
|
||
|
|
color: #7f8c8d;
|
||
|
|
margin-bottom: 5px;
|
||
|
|
}
|
||
|
|
.stat-value {
|
||
|
|
font-size: 18px;
|
||
|
|
font-weight: bold;
|
||
|
|
color: #3498db;
|
||
|
|
}
|
||
|
|
|
||
|
|
.footer {
|
||
|
|
text-align: center;
|
||
|
|
padding: 20px;
|
||
|
|
color: #95a5a6;
|
||
|
|
font-size: 12px;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div class="container">
|
||
|
|
<div class="header">
|
||
|
|
<h1>🎫 Transcript de Ticket</h1>
|
||
|
|
<div class="header-meta">
|
||
|
|
<div class="meta-item">
|
||
|
|
<span>📌 ID:</span>
|
||
|
|
<span>1461089849527505151</span>
|
||
|
|
</div>
|
||
|
|
<div class="meta-item">
|
||
|
|
<span>📁 Catégorie:</span>
|
||
|
|
<span>91522e2c</span>
|
||
|
|
</div>
|
||
|
|
<div class="meta-item">
|
||
|
|
<span>⚡ Priorité:</span>
|
||
|
|
<span style="color: #3498db; font-weight: bold;">NORMAL</span>
|
||
|
|
</div>
|
||
|
|
<div class="meta-item">
|
||
|
|
<span>📊 Statut:</span>
|
||
|
|
<span class="status-badge status-closed">closed</span>
|
||
|
|
</div>
|
||
|
|
<div class="meta-item">
|
||
|
|
<span>📅 Créé:</span>
|
||
|
|
<span>14/01/2026 21:09</span>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="messages-section">
|
||
|
|
<h3>💬 Messages (0)</h3>
|
||
|
|
|
||
|
|
</div>
|
||
|
|
|
||
|
|
|
||
|
|
<div class="stats-section">
|
||
|
|
<h3>📊 Statistiques</h3>
|
||
|
|
<div class="stats-grid">
|
||
|
|
<div class="stat-item">
|
||
|
|
<span class="stat-label">Durée</span>
|
||
|
|
<span class="stat-value">3 min</span>
|
||
|
|
</div>
|
||
|
|
<div class="stat-item">
|
||
|
|
<span class="stat-label">Messages</span>
|
||
|
|
<span class="stat-value">0</span>
|
||
|
|
</div>
|
||
|
|
<div class="stat-item">
|
||
|
|
<span class="stat-label">Note</span>
|
||
|
|
<span class="stat-value">Pas de note</span>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
|
||
|
|
<div class="footer">
|
||
|
|
<p>Généré le 14/01/2026 à 21:15:28</p>
|
||
|
|
<p>Système de Tickets - Kuby Bot</p>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|