part_solver_status.html 541 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<table class="table table-bordered" id="workers-table">
    <thead>
        <tr>
            <th class="">Worker</th>
            <th class="">Status</th>
        </tr>
    </thead>
    <tbody>
        {% for k, w in workers.items() %}
        <tr class="worker-status-row" data-cname="{{w.name}}">
            <td class="worker-status-name">
                {{w.name}} ({{w.address}})
            </td>
            <td class="worker-status-value">{{w.status}}</td>
        </tr>
        {% endfor %}
    </tbody>
</table>