]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - templates/fireinfo/index.html
Bootstrap 4 migration: fireinfo page (part)
[people/shoehn/ipfire.org.git] / templates / fireinfo / index.html
CommitLineData
140172cf
MT
1{% extends "base.html" %}
2
3{% block title %}Fireinfo{% end block %}
4
5{% block body %}
0cc40209
SH
6<div class="container">
7 <section class="features-content col-12">
8 <h2 class="display-2 text-center mb-0">{{ _("Fireinfo") }}</h2>
9 {% if lang == "de" %}
10 <p class="lead text-center">
11 <strong>Fireinfo</strong> ist ein Tool, welches anonym Informationen
12 über die in IPFire-Systemen verbaute Hardware sammelt.
13 </p>
14 <p>
15 Diese Daten sollen den Entwicklern helfen zu erkennen, welche
16 Hardware am häufigsten eingesetzt wird und sind auch hilfreich
17 um Hardware-Probleme ausfindig zu machen.
18 </p>
19 {% else %}
20 <p class="lead text-center">
21 <strong>Fireinfo</strong> is a tool that anonymously collects statistical
22 data from IPFire systems.
23 </p>
24 <p>
25 These data should help the developers to learn
26 which hardware is used most often to run an IPFire system, but is also
27 handy when it comes to debugging hardware problems.
28 </p>
29 {% end %}
30
31 <div class="row mt-6">
32 <div class="col">
33 {% if lang == "de" %}
34 <p>
35 Bitte geben Sie die Profil-ID von ihrem System ein, welche
36 Sie auf der Fireinfo-Seite des Webinterfaces finden können:
37 </p>
38 {% else %}
39 <p>
40 Please enter the profile ID of your system, which can be found
41 on the fireinfo page on the web interface, to see your profile:
42 </p>
43 {% end %}
44 </div>
45 <div class="col">
46 <form class="form-inline" method="POST" action="" role="form">
47 <div class="form-group">
48 <label class="sr-only" for="profileId">{{ _("Profile ID") }}</label>
49 <input type="text" class="form-control" name="profile_id" id="profileId"
50 value="" placeholder="{{ _("Profile ID") }}">
51 <button type="submit" class="btn btn-default">{{ _("Show") }}</button>
52 </div>
53 {% raw xsrf_form_html() %}
54 </form>
55
56 <p><a href="/profile/random" class="text-muted">{{ _("Random profile") }}</a></p>
57 </div>
140172cf 58 </div>
0cc40209
SH
59 </section>
60</div>
140172cf 61{% end block %}