add Tracker icons

This commit is contained in:
Fabian Dill
2020-06-21 17:44:50 +02:00
parent 26eb44ef15
commit 851f86e13d
2 changed files with 68 additions and 3 deletions

View File

@@ -11,7 +11,12 @@
<th>Player</th>
<th>Name</th>
{% for name in tracking_names %}
<th>{{ name }}</th>
{% if name in icons %}
<th><img height="32" width="32" style="object-fit: contain" src="{{ icons[name] }}"
alt="{{ name }}"></th>
{% else %}
<th>{{ name }}</th>
{% endif %}
{% endfor %}
</tr>
</thead>