24 lines
744 B
HTML
24 lines
744 B
HTML
{% if current_task_path and current_task_time %}
|
|
<div id="current-task-info" style="font-size: 48pt; margin-bottom: 40px; text-align: center;">
|
|
<div style="color: #333;">{{ current_task_path }}</div>
|
|
<div style="color: #666; font-size: 36pt;">{{ current_task_time }}</div>
|
|
</div>
|
|
{% endif %}
|
|
<table>
|
|
<tbody>
|
|
{% for row in rows %}
|
|
{% if row["ws"] in ['Away', 'Other'] %}
|
|
{% set my_class = 'grey' %}
|
|
{% elif row["ws"] in ['Active', 'Idle'] %}
|
|
{% set my_class = 'blue' %}
|
|
{% else %}
|
|
{% set my_class = '' %}
|
|
{% endif %}
|
|
<tr>
|
|
<td class="{{my_class}}" >{{ row["ws"] }}</td>
|
|
<td class="{{my_class}}" >{{ row["total"] }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|