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