aboutsummaryrefslogtreecommitdiff
path: root/table.tmpl
blob: 75899d7b024413d63c72288c06b0f77e6d44d850 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<html>
	<head><title>GNU Taler Dashboard</title></head>
<style>
body {
	margin-left:1%;
	margin-right:1%;
	font-family:sans-serif;
}
table { 
	background: white;
	border-collapse: collapse;
}
th, td { 
	padding: 8px;
	border: 1px solid #ddd;
	vertical-align: top;
}
td {
	min-width: 10em;
}
th.side { 
	color: brown;
	text-align: right; 
}
tr:hover {
	background: #efe;
}
.feature {
	background: #cde;
}
.issue {
	background: #edc;
}
details {
	max-width: 30vw;
	border-radius: 5px;
	padding: 8px;
	overflow-x: auto;
	white-space: nowrap;
	text-overflow: ellipsis;
}
details.version {
	max-width: 30vw;
	padding: 5px;
	font-weight: normal;
	overflow: none;
	white-space: normal;
	text-align: justify;
}
</style>
	<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 }}
		<!--p>
		{{ range $top.Tags }}
			<button>{{ . }}</button>
		{{ end }}
		</p-->

		<table>
			<tr>
				<th class="side"></th>
				{{ range $top.TargetVersions }}
					<th>
					  <details class="version">
					    {{ $version := $versions.Get . }}
					    <summary><b>{{ . }}</b> ({{ $version.Timestamp.Format "02 Jan 06"}})</summary>
					    <div>
						    {{ $version.Description }}
					    </div>
					  </details>
					</th>
				{{ end }}
			</tr>
			{{ range $cat := $top.Categories }}
			<tr>
				<th class="side">{{ . }}</th>
				{{ 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 }}
					</details>
					{{ 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 }}
					</details>
					{{ end }}
				 </td>
				{{ end }}
			</tr>
			{{ 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>
</html>