2023-12-27 03:06:11 +01:00
|
|
|
<html>
|
|
|
|
<head><title>GNU Taler Dashboard</title></head>
|
|
|
|
<style>
|
|
|
|
body {
|
2023-12-27 13:21:04 +01:00
|
|
|
margin-left:1%;
|
|
|
|
margin-right:1%;
|
2023-12-27 03:06:11 +01:00
|
|
|
font-family:sans-serif;
|
|
|
|
}
|
|
|
|
h3 {
|
|
|
|
color: brown;
|
|
|
|
}
|
2023-12-27 13:53:36 +01:00
|
|
|
h4 {
|
|
|
|
margin-left: 5%;
|
|
|
|
}
|
2023-12-27 13:21:04 +01:00
|
|
|
details {
|
2023-12-27 13:53:36 +01:00
|
|
|
margin-left: 5%;
|
|
|
|
margin-right: 5%;
|
2023-12-27 13:21:04 +01:00
|
|
|
}
|
2023-12-27 03:06:11 +01:00
|
|
|
pre {
|
|
|
|
max-width: 100%;
|
|
|
|
overflow: scroll;
|
|
|
|
text-overflow: wrap,ellipsis;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<body>
|
|
|
|
<h1>GNU Taler Dashboard</h1>
|
2023-12-27 13:21:04 +01:00
|
|
|
<h2><a href="/">Table view</a> | List View </h2>
|
|
|
|
Data from {{ .Timestamp.Format "02 Jan 06 15:04 MST"}}, updateting every {{ .Freq }} (no auto-refresh)
|
2023-12-27 03:06:11 +01:00
|
|
|
{{ with .Lasterror }}, Last error: {{ . }} {{end}}
|
|
|
|
|
2023-12-27 13:53:36 +01:00
|
|
|
{{ $top := . }}
|
|
|
|
{{ $features := .Features }}
|
2023-12-27 03:06:11 +01:00
|
|
|
{{ $issues := .Issues }}
|
2023-12-27 14:51:01 +01:00
|
|
|
{{ $versions := .VersionsByDate }}
|
2023-12-27 13:53:36 +01:00
|
|
|
<!-- p>
|
|
|
|
{{ range $top.Tags }}
|
2023-12-27 03:06:11 +01:00
|
|
|
<button>{{ . }}</button>
|
|
|
|
{{ end }}
|
2023-12-27 04:18:58 +01:00
|
|
|
</p -->
|
2023-12-27 03:06:11 +01:00
|
|
|
|
2023-12-27 13:53:36 +01:00
|
|
|
{{ range $cat := $top.Categories }}
|
2023-12-27 03:06:11 +01:00
|
|
|
<h3>{{ . }}</h3>
|
2023-12-27 13:53:36 +01:00
|
|
|
<h4>Features</h4>
|
|
|
|
{{ range $features.ByCategory $cat }}
|
|
|
|
<details>
|
|
|
|
<summary><a href="https://bugs.gnunet.org/view.php?id={{.Id}}" target="_blank">{{.Id}}</a> {{.Summary}}</summary>
|
|
|
|
<pre>{{ .Description }}</pre>
|
|
|
|
</details>
|
|
|
|
{{ end }}
|
|
|
|
<h4>Issues</h4>
|
2023-12-27 03:06:11 +01:00
|
|
|
{{ range $issues.ByCategory $cat }}
|
|
|
|
<details>
|
|
|
|
<summary><a href="https://bugs.gnunet.org/view.php?id={{.Id}}" target="_blank">{{.Id}}</a> {{.Summary}}</summary>
|
|
|
|
<pre>{{ .Description }}</pre>
|
|
|
|
</details>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
2023-12-27 03:46:20 +01:00
|
|
|
<p>
|
2023-12-27 13:53:36 +01:00
|
|
|
<i>taler-dashboard - version: {{.Commit}} - <a href="https://git.kesim.org/taler/taler-dashboard">https://git.kesim.org/taler/taler-dashboard</a> </i>
|
2023-12-27 03:06:11 +01:00
|
|
|
</body>
|
|
|
|
</html>
|