]> git.ipfire.org Git - ipfire.org.git/blobdiff - www/templates/modules/stasy-table-devices.html
Move everything to the root of the repository.
[ipfire.org.git] / www / templates / modules / stasy-table-devices.html
diff --git a/www/templates/modules/stasy-table-devices.html b/www/templates/modules/stasy-table-devices.html
deleted file mode 100644 (file)
index 99d196d..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-<div class="row">
-       <div class="span12">
-               <table class="table">
-                       <thead>
-                               <th colspan="2">&nbsp;</th>
-                               <th>{{ _("Kernel module") }}</th>
-                       </thead>
-                       <tbody>
-                               {% for group, devices in groups %}
-                                       <tr>
-                                               <td colspan="3">
-                                                       <h3>{{ _(group) }}</h3>
-                                               </td>
-                                       </tr>
-
-                                       {% for device in devices %}
-                                               <tr>
-                                                       <td>
-                                                               <img src="{{ static_url("images/icons/bus-%s.png" % device.subsystem) }}"
-                                                                       alt="{{ device.subsystem.upper() }}" />
-                                                       </td>
-                                                       <td>
-                                                               <a class="vendor" href="/vendor/{{ device.subsystem }}/{{ device.vendor }}">
-                                                                       {{ device.vendor_string }}
-                                                               </a>
-                                                               -
-                                                               <a href="/model/{{ device.subsystem }}/{{ device.vendor }}/{{ device.model }}">
-                                                                       {{ device.model_string or "N/A (%s)" % device.model }}
-                                                               </a>
-                                                       </td>
-                                                       <td>
-                                                               {% if device.driver %}{{ device.driver }}{% end %}
-                                                       </td>
-                                               </tr>
-                                       {% end %}
-                               {% end %}
-                       </tbody>
-               </table>
-       </div>
-</div>