]> git.ipfire.org Git - ipfire.org.git/blame - www/templates/modules/stasy-table-devices.html
fireinfo: Some design fixes for ARM.
[ipfire.org.git] / www / templates / modules / stasy-table-devices.html
CommitLineData
91a446f0
MT
1<table class="fireinfo">
2 {% for group, devices in groups %}
3 <tr class="vendor">
4 <td colspan="3">
5 &nbsp;<br />
6 <strong>{{ _(group) }}</strong>
7 </td>
8 </tr>
9 {% for device in devices %}
10 <tr class="device">
11 <td>
12 &nbsp; <!-- XXX add margin in CSS -->
13 <img src="{{ static_url("images/icons/bus-%s.png" % device.subsystem) }}"
14 alt="{{ device.subsystem.upper() }}" />
15 </td>
16 <td>
17 <a class="vendor" href="/vendor/{{ device.subsystem }}/{{ device.vendor }}">
18 {{ device.vendor_string }}
19 </a>
20 -
21 <a href="/model/{{ device.subsystem }}/{{ device.vendor }}/{{ device.model }}">
22 {{ device.model_string or "N/A (%s)" % device.model }}
23 </a>
24 <br />
25 {{ _("Module") }}: {{ device.driver or "N/A" }}
26 </td>
27 </tr>
28 {% end %}
29 {% end %}
30</table>