]> git.ipfire.org Git - people/jschlag/pbs.git/blob - data/templates/advanced.html
Second import.
[people/jschlag/pbs.git] / data / templates / advanced.html
1 {% extends "base.html" %}
2
3 {% block title %}{{ _("Advanced options") }}{% end block %}
4
5 {% block body %}
6 <h1>{{ _("Advanced options") }}</h1>
7 <p>
8 {{ _("On this page you will find advanced things to do.") }}
9 </p>
10
11 <h2>{{ _("Statistics") }}</h2>
12 <p>
13 {{ _("See a lot of interesting statistics from the build service.") }}
14 </p>
15 <ul>
16 <li>
17 <a href="/statistics">{{ _("Statistics overview") }}</a>
18 </li>
19 </ul>
20
21 <h2>{{ _("Users") }}</h2>
22 <p>
23 {{ _("See a list of all users.") }}
24 </p>
25 <ul>
26 <li>
27 <a href="/users">{{ _("User list") }}</a>
28 </li>
29 </ul>
30
31 <h2>{{ _("Mirrors") }}</h2>
32 <ul>
33 <li>
34 <a href="/mirrors">{{ _("Mirror list") }}</a>
35 </li>
36
37 {% if current_user and current_user.is_admin() %}
38 <li>
39 <a href="/mirror/new">{{ _("Add new mirror") }}</a>
40 </li>
41 {% end %}
42 </ul>
43
44 <h2>{{ _("Logs") }}</h2>
45 <p>
46 {{ _("If you need detailed information about what happended you may want to have a look at the logs.") }}
47 </p>
48 <ul>
49 <a href="/logs">{{ _("Logs") }}</a>
50 </ul>
51
52 {% if current_user and current_user.is_admin() %}
53 <h2>{{ _("Administrator's stuff") }}</h2>
54 <p>
55 {{ _("These are a bunch of functions only available for administrators.") }}
56 </p>
57 <ul>
58 <li>
59 <a href="/uploads">{{ _("Running uploads") }}</a>
60 </li>
61 </ul>
62 {% end %}
63
64 <div style="clear: both;">&nbsp;</div>
65 {% end block %}