]> git.ipfire.org Git - ipfire.org.git/blame - src/templates/fireinfo/driver.html
fireinfo: Fix links
[ipfire.org.git] / src / templates / fireinfo / driver.html
CommitLineData
66862195
MT
1{% extends "../base.html" %}
2
3697181e 3{% block title %}{{ driver }}{% end block %}
66862195 4
3697181e 5{% block container %}
9636cf71
RH
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>
ed55cebd 12 <a href="/">
9636cf71
RH
13 Home
14 </a>
15 </li>
16 <li>
07828a72 17 <a href="/fireinfo">
9636cf71
RH
18 {{ _("Fireinfo") }}
19 </a>
20 </li>
21 <li>
07828a72 22 <a href="/fireinfo/drivers">
9636cf71
RH
23 {{ _("Drivers") }}
24 </a>
25 </li>
26 <li class="is-active">
27 <a href="#">
28 {{ driver }}
29 </a>
30 </li>
31 </ul>
32 </nav>
3d938edd
RH
33 </div>
34 </div>
35 </section>
3697181e 36
a54d0302 37 <section class="section">
3697181e 38 <div class="container">
ed83981e 39 <h1 class="title">{{ driver }}</h1>
9636cf71
RH
40 <h2 class="title is-2">{{ _("All known devices run by %s") % driver }}</h2>
41 </div>
3697181e
MT
42 </div>
43 </section>
66862195 44
9636cf71
RH
45 <section class="section">
46 <div class="container">
3d938edd 47 {% module FireinfoDeviceTable(devices) %}
9636cf71
RH
48 </div>
49 </section>
66862195 50{% end block %}