Upload templates/dsa_index.html with huggingface_hub
Browse files- templates/dsa_index.html +1 -2
templates/dsa_index.html
CHANGED
|
@@ -37,7 +37,6 @@ table.bead-table { font-size: .82rem; }
|
|
| 37 |
.strength-strong > td { background-color: #f8d7da !important; }
|
| 38 |
.strength-weak { --bs-table-bg: #fff9c4; background-color: #fff9c4 !important; }
|
| 39 |
.strength-weak > td { background-color: #fff9c4 !important; }
|
| 40 |
-
.bead-confident td:first-child { border-left: 4px solid #198754 !important; }
|
| 41 |
.badge-pos { background: #dc3545; }
|
| 42 |
.badge-neg { background: #198754; }
|
| 43 |
@media print {
|
|
@@ -336,7 +335,7 @@ window.askChoice = function(message) {
|
|
| 336 |
<thead><tr><th>Bead</th><th>Normal</th><th>Strength</th><th>Raw</th><th>Ratio</th><th>Count</th><th>Specificity</th><th>Molecular</th></tr></thead>
|
| 337 |
<tbody>
|
| 338 |
{% for b in pt.beads %}
|
| 339 |
-
<tr class="{% if b.strength == 'Strong' %}strength-strong{% elif b.strength == 'Weak' %}strength-weak{% endif %}
|
| 340 |
<td>{{ b.bead }}</td><td>{{ b.normal }}</td><td>{{ b.strength }}</td>
|
| 341 |
<td>{{ b.raw }}</td><td>{{ b.ratio }}</td><td>{{ b.count }}</td>
|
| 342 |
<td class="small" style="color:#1E40AF;font-weight:bold;">{{ b.sero }}</td>
|
|
|
|
| 37 |
.strength-strong > td { background-color: #f8d7da !important; }
|
| 38 |
.strength-weak { --bs-table-bg: #fff9c4; background-color: #fff9c4 !important; }
|
| 39 |
.strength-weak > td { background-color: #fff9c4 !important; }
|
|
|
|
| 40 |
.badge-pos { background: #dc3545; }
|
| 41 |
.badge-neg { background: #198754; }
|
| 42 |
@media print {
|
|
|
|
| 335 |
<thead><tr><th>Bead</th><th>Normal</th><th>Strength</th><th>Raw</th><th>Ratio</th><th>Count</th><th>Specificity</th><th>Molecular</th></tr></thead>
|
| 336 |
<tbody>
|
| 337 |
{% for b in pt.beads %}
|
| 338 |
+
<tr class="{% if b.strength == 'Strong' %}strength-strong{% elif b.strength == 'Weak' %}strength-weak{% endif %}" data-sero="{{ b.sero }}" data-allele="{{ b.allele }}">
|
| 339 |
<td>{{ b.bead }}</td><td>{{ b.normal }}</td><td>{{ b.strength }}</td>
|
| 340 |
<td>{{ b.raw }}</td><td>{{ b.ratio }}</td><td>{{ b.count }}</td>
|
| 341 |
<td class="small" style="color:#1E40AF;font-weight:bold;">{{ b.sero }}</td>
|