diff options
Diffstat (limited to 'list.tmpl')
-rw-r--r-- | list.tmpl | 25 |
1 files changed, 19 insertions, 6 deletions
@@ -9,9 +9,12 @@ body { h3 { color: brown; } +h4 { + margin-left: 5%; +} details { - margin-left: 10%; - margin-right: 10%; + margin-left: 5%; + margin-right: 5%; } pre { max-width: 100%; @@ -25,15 +28,25 @@ pre { Data from {{ .Timestamp.Format "02 Jan 06 15:04 MST"}}, updateting every {{ .Freq }} (no auto-refresh) {{ with .Lasterror }}, Last error: {{ . }} {{end}} - <!-- p> + {{ $top := . }} + {{ $features := .Features }} {{ $issues := .Issues }} - {{ range $issues.Tags }} + <!-- p> + {{ range $top.Tags }} <button>{{ . }}</button> {{ end }} </p --> - {{ range $cat := $issues.Categories }} + {{ range $cat := $top.Categories }} <h3>{{ . }}</h3> + <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> {{ range $issues.ByCategory $cat }} <details> <summary><a href="https://bugs.gnunet.org/view.php?id={{.Id}}" target="_blank">{{.Id}}</a> {{.Summary}}</summary> @@ -42,6 +55,6 @@ pre { {{ end }} {{ end }} <p> - <i>end of dashboard - <a href="https://git.kesim.org/taler/taler-dashboard">https://git.kesim.org/taler/taler-dashboard</a> </i> + <i>taler-dashboard - version: {{.Commit}} - <a href="https://git.kesim.org/taler/taler-dashboard">https://git.kesim.org/taler/taler-dashboard</a> </i> </body> </html> |