2010-03-15 16:05:09 -06:00
|
|
|
<!DOCTYPE HTML>
|
|
|
|
<html>
|
|
|
|
<head>
|
2010-03-31 00:01:16 -06:00
|
|
|
<title>Packages - Go Dashboard</title>
|
|
|
|
<link rel="stylesheet" type="text/css" href="static/style.css">
|
2010-03-15 16:05:09 -06:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2010-03-31 00:01:16 -06:00
|
|
|
<ul class="menu">
|
|
|
|
<li><a href="/">Build Status</a></li>
|
|
|
|
<li>Packages</li>
|
2010-06-23 08:27:51 -06:00
|
|
|
<li><a href="/project">Projects</a></li>
|
2010-03-31 00:01:16 -06:00
|
|
|
<li><a href="/benchmarks">Benchmarks</a></li>
|
|
|
|
<li><a href="http://golang.org/">golang.org</a></li>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
<h1>Go Dashboard</h1>
|
2010-03-15 16:05:09 -06:00
|
|
|
|
2010-03-31 00:01:16 -06:00
|
|
|
<p>
|
|
|
|
Packages listed on this page are written by third parties and
|
|
|
|
may or may not build or be safe to use.
|
|
|
|
</p>
|
2010-03-15 16:05:09 -06:00
|
|
|
|
|
|
|
<h2>Recently Installed Packages</h2>
|
|
|
|
<table class="alternate" cellpadding="0" cellspacing="0">
|
2010-06-23 08:27:51 -06:00
|
|
|
<tr><th>last install</th><th>count</th><th>path</th><th>project</th></tr>
|
2010-03-15 16:05:09 -06:00
|
|
|
{% for r in by_time %}
|
|
|
|
<tr>
|
2010-03-31 00:01:16 -06:00
|
|
|
<td class="time">{{r.last_install|date:"Y-M-d H:i"}}</td>
|
2010-03-15 16:05:09 -06:00
|
|
|
<td class="count">{{r.count}}</td>
|
|
|
|
<td class="path"><a href="{{r.web_url}}">{{r.path}}</a></td>
|
2010-06-23 08:27:51 -06:00
|
|
|
<td class="project">
|
|
|
|
{% for p in r.project_set %}
|
|
|
|
<a href="{{p.web_url}}">{{p.name}}</a> - {{p.descr}}
|
|
|
|
{% endfor %}
|
|
|
|
</td>
|
2010-03-15 16:05:09 -06:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<h2>Most Installed Packages</h2>
|
|
|
|
<table class="alternate" cellpadding="0" cellspacing="0">
|
2010-06-23 08:27:51 -06:00
|
|
|
<tr><th>last install</th><th>count</th><th>path</th><th>project</th></tr>
|
2010-03-15 16:05:09 -06:00
|
|
|
{% for r in by_count %}
|
|
|
|
<tr>
|
2010-03-31 00:01:16 -06:00
|
|
|
<td class="time">{{r.last_install|date:"Y-M-d H:i"}}</td>
|
2010-03-15 16:05:09 -06:00
|
|
|
<td class="count">{{r.count}}</td>
|
|
|
|
<td class="path"><a href="{{r.web_url}}">{{r.path}}</a></td>
|
2010-06-23 08:27:51 -06:00
|
|
|
<td class="project">
|
|
|
|
{% for p in r.project_set %}
|
|
|
|
<a href="{{p.web_url}}">{{p.name}}</a> - {{p.descr}}
|
|
|
|
{% endfor %}
|
|
|
|
</td>
|
2010-03-15 16:05:09 -06:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
</body>
|
|
|
|
</html>
|