]> git.ipfire.org Git - ipfire.org.git/blob - templates/stasy-index.html
Remove obsolete pakfire CGI scripts.
[ipfire.org.git] / templates / stasy-index.html
1 {% extends "stasy-base-2.html" %}
2
3 {% block title %}Fireinfo{% end block %}
4
5 {% block body %}
6 <div class="page-header">
7 <h1>
8 Fireinfo <small>{{ _("A hardware data collection tool for IPFire") }}</small>
9 </h1>
10 </div>
11
12 <div class="row">
13 <div class="span12">
14 {% if lang == "de" %}
15 <p>
16 <strong>Fireinfo</strong> ist ein Tool, welches anonym Informationen
17 über die in IPFire-Systemen verbaute Hardware sammelt.
18 Diese Daten sollen den Entwicklern helfen zu erkennen, welche
19 Hardware am häufigsten eingesetzt wird und sind auch hilfreich
20 um Hardware-Probleme ausfindig zu machen.
21 </p>
22 {% else %}
23 <p>
24 <strong>Fireinfo</strong> is a tool that anonymously collects statistical
25 data from IPFire systems. 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 <hr>
31 </div>
32 </div>
33
34 <div class="row">
35 <div class="span8 offset2 well">
36 {% if lang == "de" %}
37 <p>
38 Bitte geben Sie die Profil-ID von ihrem System ein, welche
39 Sie auf der Fireinfo-Seite des Webinterfaces finden können:
40 </p>
41 {% else %}
42 <p>
43 Please enter the profile ID of your system, which can be found
44 on the fireinfo page on the web interface, to see your profile:
45 </p>
46 {% end %}
47
48 <hr>
49
50 <form method="POST" action="">
51 <div class="input-append">
52 <input type="text" class="span7" name="profile_id" value=""
53 placeholder="{{ _("Profile ID") }}"><button type="submit" class="btn">{{ _("Show") }}</button>
54 </div>
55 {{ xsrf_form_html() }}
56 </form>
57 </div>
58 </div>
59 {% end block %}