blob: 24f7ea73842d379c2a6d2265e2103f2aa9bef66d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
$def with (count, form)
$var title: Gentoostats
Welcome to the gentoostats webapp <br/>
<br/>
Number of hosts: $count<br/>
<h2>Statistics</h2>
<ul>
<li>Arch statistics: <a href="arch">/arch</a></li>
<li>Portage feature statistics: <a href="feature">/feature</a></li>
<li>Keyword statistics: <a href="keyword">/keyword</a></li>
<li>Language statistics: <a href="lang">/lang</a></li>
<li>Mirror statistics: <a href="mirror">/mirror</a></li>
<li>Package statistics: <a href="package">/package</a></li>
<li>Profile statistics: <a href="profile">/profile</a></li>
<li>Repository statistics: <a href="repo">/repo</a></li>
<li>Useflag statistics: <a href="use">/use</a></li>
</ul>
<h2>Package search</h2>
<form method="GET" action="/gentoostats/search">
$:form.render()
</form>
|