]> git.ipfire.org Git - ipfire.org.git/blob - src/templates/fireinfo/driver.html
wiki: Only match usernames when a word starts with @
[ipfire.org.git] / src / templates / fireinfo / driver.html
1 {% extends "../base.html" %}
2
3 {% block title %}{{ driver }}{% end block %}
4
5 {% block container %}
6 <section class="hero is-primary">
7 <div class="hero-body">
8 <div class="container">
9 <nav class="breadcrumb is-medium" aria-label="breadcrumbs">
10 <ul>
11 <li>
12 <a href="/">
13 Home
14 </a>
15 </li>
16 <li>
17 <a href="/fireinfo">
18 {{ _("Fireinfo") }}
19 </a>
20 </li>
21 <li>
22 <a href="/fireinfo/drivers">
23 {{ _("Drivers") }}
24 </a>
25 </li>
26 <li class="is-active">
27 <a href="#">
28 {{ driver }}
29 </a>
30 </li>
31 </ul>
32 </nav>
33 </div>
34 </div>
35 </section>
36
37 <section class="section">
38 <div class="container">
39 <h1 class="title">{{ driver }}</h1>
40 <h2 class="title is-2">{{ _("All known devices run by %s") % driver }}</h2>
41 </div>
42 </div>
43 </section>
44
45 <section class="section">
46 <div class="container">
47 {% module FireinfoDeviceTable(devices) %}
48 </div>
49 </section>
50 {% end block %}