]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - www/templates/stasy-index.html
Big update of the fireinfo service.
[people/shoehn/ipfire.org.git] / www / templates / stasy-index.html
CommitLineData
940227cb
MT
1{% extends "stasy-base-2.html" %}
2
3{% block title %}{{ _("Statistical evaluation service") }}{% end block %}
4
5{% block content %}
6 <h3>{{ _("Statistical evaluation service") }}</h3>
7
91a446f0
MT
8 <p>
9 Please enter your profile ID and have a look of the hardware components
10 that are installed on your system:
11 </p>
12
13 <form name="profile" method="POST">
14 {{ xsrf_form_html() }}
15 <p>
16 <input type="text" name="profile_id" size="40" maxlength="40" />
17 <input type="submit" value="{{ _("Show profile") }}" />
18 </p>
19 </form>
20 <br class="clear" />
21
22 <h3>XXX Just for now...</h3>
23 <p>
24 {% for p in profiles %}
25 <a href="/profile/{{ p }}">{{ p }}</a>
26 {% end %}
27 </p>
940227cb
MT
28
29{% end block %}