make tracker look better

This commit is contained in:
Fabian Dill
2020-06-22 00:58:18 +02:00
parent 851f86e13d
commit 6a5207900f
2 changed files with 12 additions and 7 deletions

View File

@@ -23,12 +23,16 @@
<tbody>
{% for player, items in players.items() %}
<tr>
<td>{{ loop.index }}</td>
<td>{{ player_names[(team, loop.index)] }}</td>
<td class="table-info">{{ loop.index }}</td>
<td class="table-info">{{ player_names[(team, loop.index)] }}</td>
{% for id in tracking_ids %}
<td>
{{ items[id] }}
</td>
{% if items[id] %}
<td class="table-success">
{% if id in multi_items %}{{ items[id] }}{% else %}✔️{% endif %}</td>
{% else %}
<td></td>
{% endif %}
{% endfor %}
</tr>
{% endfor %}