]> git.ipfire.org Git - ipfire.org.git/blob - src/templates/fireinfo/vendors.html
.gitignore: Add .vscode
[ipfire.org.git] / src / templates / fireinfo / vendors.html
1 {% extends "../base.html" %}
2
3 {% block title %}{{ _("Vendors") }}{% end block %}
4
5 {% block body %}
6 <div class="page-header">
7 <h3>{{ _("Vendors") }}</h3>
8 </div>
9
10 <dl>
11 {% for vendor, subsystems in vendors %}
12 <dt>{{ vendor }}</dt>
13 <dd>
14 <ul class="list-inline">
15 {% for subsystem, vendor_id in sorted(subsystems) %}
16 <li>
17 <img src="{{ static_url("images/icons/bus-%s.png" % subsystem) }}"
18 alt="{{ subsystem.upper() }}" />
19 <a href="/device/{{ subsystem }}/{{ vendor_id }}">
20 {{ subsystem.upper() }}
21 </a>
22 </li>
23 {% end %}
24 </ul>
25 </dd>
26 {% end %}
27 </dl>
28 {% end block %}