]> git.ipfire.org Git - ipfire.org.git/blob - templates/fireinfo/vendor-detail.html
5d2f969ffc2913ee901ad83cc27aee1c278462aa
[ipfire.org.git] / templates / fireinfo / vendor-detail.html
1 {% extends "../base.html" %}
2
3 {% block title %}{{ vendor_name }}{% end block %}
4
5 {% block body %}
6 <div class="page-header">
7 <h2>{{ vendor_name }}</h2>
8 </div>
9
10 {% if lang == "de" %}
11 <p>
12 Dies ist eine Aufstellung über alle Geräte von
13 <strong>{{ vendor_name }}</strong> in der Datenbank.
14 {% else %}
15 <p>
16 This is a list of all devices this database knows about from
17 <strong>{{ vendor_name }}</strong>.
18 </p>
19 {% end %}
20
21 {% module FireinfoDeviceAndGroupsTable(devices) %}
22 {% end block %}