21 lines
614 B
HTML
21 lines
614 B
HTML
{% if not devices %}
|
|
<p class="empty">Kein bekanntes Hersteller-Gerät am USB.</p>
|
|
{% else %}
|
|
<table class="grid">
|
|
<thead>
|
|
<tr><th>Bus:Addr</th><th>VID:PID</th><th>Hersteller</th><th>Modus</th><th>Hinweis</th></tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for d in devices %}
|
|
<tr>
|
|
<td>{{ "%03d"|format(d.bus) }}:{{ "%03d"|format(d.address) }}</td>
|
|
<td><code>{{ "%04x"|format(d.vid) }}:{{ "%04x"|format(d.pid) }}</code></td>
|
|
<td>{{ d.mode.vendor }}</td>
|
|
<td><strong>{{ d.mode.label }}</strong></td>
|
|
<td>{{ d.mode.notes }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endif %}
|