aboutsummaryrefslogtreecommitdiff
path: root/table.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'table.tmpl')
-rw-r--r--table.tmpl67
1 files changed, 28 insertions, 39 deletions
diff --git a/table.tmpl b/table.tmpl
index 75899d7..63fa082 100644
--- a/table.tmpl
+++ b/table.tmpl
@@ -1,5 +1,5 @@
-<html>
- <head><title>GNU Taler Dashboard</title></head>
+<!DOCTYPE html>
+ <head><title>GNU Taler Dashboard</title>
<style>
body {
margin-left:1%;
@@ -47,66 +47,55 @@ details.version {
white-space: normal;
text-align: justify;
}
-</style>
+</style></head>
<body>
<h1>GNU Taler Dashboard</h1>
<h2>Table view | <a href="/list">List View</a></h2>
Data from {{ .Timestamp.Format "02 Jan 06 15:04 MST"}}, updateting every {{ .Freq }} (no auto-refresh)
- {{ with .Lasterror }}, Last error: {{ . }} {{end}}
-
- {{ $top := . }}
- {{ $features := .Features }}
- {{ $issues := .Issues }}
- {{ $versions := .VersionsByDate }}
+ {{- with .Lasterror }}, Last error: {{ . }} {{end }}
+ {{- $top := . -}}
+ {{- $features := .Features -}}
+ {{- $issues := .Issues -}}
+ {{- $versions := .VersionsByDate -}}
<!--p>
- {{ range $top.Tags }}
- <button>{{ . }}</button>
- {{ end }}
+ {{- range $top.Tags -}}<button>{{ . }}</button>{{- end -}}
</p-->
-
<table>
<tr>
<th class="side"></th>
- {{ range $top.TargetVersions }}
+ {{- range $top.TargetVersions }}
<th>
<details class="version">
- {{ $version := $versions.Get . }}
+ {{- $version := $versions.Get . }}
<summary><b>{{ . }}</b> ({{ $version.Timestamp.Format "02 Jan 06"}})</summary>
- <div>
- {{ $version.Description }}
- </div>
+ <div>{{$version.Description }}</div>
</details>
</th>
- {{ end }}
+ {{- end}}
</tr>
- {{ range $cat := $top.Categories }}
+ {{- range $cat := $top.Categories }}
<tr>
<th class="side">{{ . }}</th>
- {{ range $tar := $top.TargetVersions }}
- <td>
- {{ with $features.ByCategoryAndTarget $cat $tar }}
+ {{- range $tar := $top.TargetVersions }}
+ <td>{{ with $features.ByCategoryAndTarget $cat $tar }}
<details class="feature">
- <summary>{{ $l := len .}} {{ if lt 1 $l }} {{ $l }} features {{ else }} 1 feature {{ end }} </summary>
- {{ range . }}
- <a href="https://bugs.gnunet.org/view.php?id={{.Id}}" target="_blank">{{.Id}}</a> {{.Summary}}<br>
- {{ end }}
+ <summary>{{ $l := len .}}{{ if lt 1 $l }}{{ $l }} features{{ else }}1 feature{{ end }}</summary>
+ {{- range . }}
+ <a href="https://bugs.gnunet.org/view.php?id={{.Id}}" target="_blank">{{.Id}}</a> {{.Summary}}<br>
+ {{- end}}
</details>
- {{ end }}
-
- {{ with $issues.ByCategoryAndTarget $cat $tar }}
+ {{- end }}
+ {{- with $issues.ByCategoryAndTarget $cat $tar }}
<details class="issue">
- <summary>{{ $l := len .}} {{ if lt 1 $l }} {{ $l }} issues {{ else }} 1 issue {{ end }} </summary>
- {{ range . }}
- <a href="https://bugs.gnunet.org/view.php?id={{.Id}}" target="_blank">{{.Id}}</a> {{.Summary}}<br>
- {{ end }}
+ <summary>{{ $l := len .}}{{ if lt 1 $l }}{{ $l }} issues{{ else }}1 issue{{ end }}</summary>
+ {{- range . }}
+ <a href="https://bugs.gnunet.org/view.php?id={{.Id}}" target="_blank">{{.Id}}</a> {{.Summary}}<br>{{end}}
</details>
- {{ end }}
- </td>
- {{ end }}
+ {{ end -}}
+ </td>{{ end }}
</tr>
- {{ end }}
+ {{- end}}
</table>
-
<p>
<i>taler-dashboard - version: {{.Commit}} - <a href="https://git.kesim.org/taler/taler-dashboard">https://git.kesim.org/taler/taler-dashboard</a> </i>
</body>