diff options
Diffstat (limited to 'table.tmpl')
-rw-r--r-- | table.tmpl | 17 |
1 files changed, 7 insertions, 10 deletions
@@ -91,30 +91,27 @@ details[open].issue { {{- $top := . -}} {{- $features := .Features -}} {{- $issues := .Issues -}} - {{- $versions := .VersionsByDate -}} + {{- $versions := .VersionsByDate.Sort -}} <!--p> {{- range $top.Tags -}}<button>{{ . }}</button>{{- end -}} </p--> <table> <tr> <th class="side"></th> - {{- range $vname := $top.TargetVersions }} - {{- with $version := $versions.Get . }} + {{- range $version := $versions }} <th> <details class="version"> - <summary><b>{{ $vname }}</b> <span class="right">({{ $version.Timestamp.Format "02 Jan 06"}})</span></summary> + <summary><b>{{ $version.Name }}</b> <span class="right">({{ $version.Timestamp.Format "02 Jan 06"}})</span></summary> <div>{{ $version.Description }}</div> </details> </th> {{- end}} - {{- end}} </tr> {{- range $cat := $top.Categories }} <tr> <th class="side">{{ . }}</th> - {{- range $tar := $top.TargetVersions }} - {{- with $version := $versions.Get . }} - <td><div class="minh">{{ with $features.ByCategoryAndTarget $cat $tar }} + {{- range $version := $versions }} + <td><div class="minh">{{ with $features.ByCategoryAndTarget $cat $version.Name }} <details class="feature"> <summary> <div>{{ $l := len .}}{{ if lt 1 $l }}{{ $l }} features{{ else }}1 feature{{ end }}</div> @@ -133,7 +130,7 @@ details[open].issue { {{- end}} </details> {{- end }} - {{- with $issues.ByCategoryAndTarget $cat $tar }} + {{- with $issues.ByCategoryAndTarget $cat $version.Name }} <details class="issue"> <summary> <div>{{ $l := len .}}{{ if lt 1 $l }}{{ $l }} issues{{ else }}1 issue{{ end }}</div> @@ -147,7 +144,7 @@ details[open].issue { {{- end}} </details> {{ end -}} - </div></td>{{ end }} + </div></td> {{ end }} </tr> {{- end}} |