change instruments list from symbols to name
This commit is contained in:
@@ -3,6 +3,11 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
||||
<link rel="manifest" href="{{ url_for('static', filename='site.webmanifest') }}?v=1">
|
||||
<link rel="apple-touch-icon" href="{{ url_for('static', filename='apple-touch-icon.png') }}?v=1">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="{{ url_for('static', filename='favicon-32x32.png') }}?v=1">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="{{ url_for('static', filename='favicon-16x16.png') }}?v=1">
|
||||
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}?v=1">
|
||||
<title>Financial Dashboard</title>
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.0/font/bootstrap-icons.css">
|
||||
@@ -226,7 +231,7 @@
|
||||
if (item.error || !item.last_close) {
|
||||
htmlContent += `
|
||||
<tr>
|
||||
<td>${item.symbol || 'Unknown'}</td>
|
||||
<td>${item.name || 'Unknown'}</td>
|
||||
<td colspan="9" class="text-center p-3">
|
||||
<span class="badge bg-warning text-dark"><i class="bi bi-exclamation-triangle"></i> Needs Sync</span>
|
||||
<small class="text-muted ms-2">Local CSV not found or corrupted.</small>
|
||||
|
||||
Reference in New Issue
Block a user