]> git.ipfire.org Git - ipfire.org.git/blame - templates/modules/stasy-table-devices.html
Move everything to the root of the repository.
[ipfire.org.git] / templates / modules / stasy-table-devices.html
CommitLineData
60024cc8
MT
1<div class="row">
2 <div class="span12">
3 <table class="table">
4 <thead>
5 <th colspan="2">&nbsp;</th>
6 <th>{{ _("Kernel module") }}</th>
7 </thead>
8 <tbody>
9 {% for group, devices in groups %}
10 <tr>
11 <td colspan="3">
12 <h3>{{ _(group) }}</h3>
13 </td>
14 </tr>
15
16 {% for device in devices %}
17 <tr>
18 <td>
19 <img src="{{ static_url("images/icons/bus-%s.png" % device.subsystem) }}"
20 alt="{{ device.subsystem.upper() }}" />
21 </td>
22 <td>
23 <a class="vendor" href="/vendor/{{ device.subsystem }}/{{ device.vendor }}">
24 {{ device.vendor_string }}
25 </a>
26 -
27 <a href="/model/{{ device.subsystem }}/{{ device.vendor }}/{{ device.model }}">
28 {{ device.model_string or "N/A (%s)" % device.model }}
29 </a>
30 </td>
31 <td>
32 {% if device.driver %}{{ device.driver }}{% end %}
33 </td>
34 </tr>
35 {% end %}
36 {% end %}
37 </tbody>
38 </table>
39 </div>
40</div>