Выделите дублирующиеся строки в таблице, построенной поверх BOOTSTRAP 4, визуализированной с использованием Python 3 (FLASK).Как мы это делаем?Я приложил скриншот строк.В этом случае строки с IDD = 2 должны быть выделены другим цветом, скажем, КРАСНЫМ.
СОСТОЯНИЕ IDD
1 ХОРОШО
2 VGOOD
2VGOOD
Есть мысли?
<div class="table-responsive">
<table class="table table-bordered table-hover" style="width; 100%"
id="dynamic_weather_1">
<thead>
<tr>
<th scope="col">IDD</th>
<th scope="col">CONDITION</th>
</tr>
</thead>
<tbody>
{% for weather in data %}
<tr>
<td>{{weather.idd}}</td>
<td>{{weather.condition}}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>