]> git.ipfire.org Git - ipfire.org.git/blob - src/templates/fireinfo/model-detail.html
.gitignore: Add .vscode
[ipfire.org.git] / src / templates / fireinfo / model-detail.html
1 {% extends "../base.html" %}
2
3 {% block title %}{{ vendor_name }} - {{ model_name or model_id }}{% end block %}
4
5 {% block body %}
6 <div class="page-header">
7 <h2>
8 <a href="/vendor/{{ subsystem }}/{{ vendor_id }}">{{ vendor_name }}</a>
9 - {{ model_name or model_id }}
10 </h2>
11 </div>
12
13 <p>
14 {{ _("This device is installed on approximately %.2f%% of all systems.") % percentage }}
15 </p>
16
17 {% if profiles %}
18 <p>
19 {{ _("Here are some random profiles which have this device:") }}
20 </p>
21 <ul>
22 {% for public_id in profiles %}
23 <li>
24 <a href="/profile/{{ public_id }}">{{ public_id }}</a>
25 </li>
26 {% end %}
27 </ul>
28 {% end %}
29 {% end block %}