]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - templates/fireinfo/index.html
Update fireinfo templates
[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 %}
6 <div class="row">
be699a90 7 <div class="col-lg-12 col-md-12">
140172cf
MT
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">
be699a90 34 <div class="col-lg-8 col-md-8 col-lg-offset-2 well">
140172cf
MT
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 method="POST" action="">
50 <div class="input-append">
be699a90 51 <input type="text" class="form-control col-lg-7 col-md-7" name="profile_id" value=""
52 placeholder="{{ _("Profile ID") }}"><button type="submit" class="btn btn-default">{{ _("Show") }}</button>
140172cf
MT
53 </div>
54 {% raw xsrf_form_html() %}
55 </form>
56 </div>
57 </div>
58{% end block %}