subscribe-bot/web/templates/map-version.html

28 lines
584 B
HTML
Raw Normal View History

2020-10-14 20:58:01 +00:00
{{ define "content" }}
<small>up to the latest 20 revisions, pagination coming later</small>
<table>
<thead>
<th>Date</th>
<th>Links</th>
<th>Summary</th>
</thead>
<tbody>
{{ range .Versions }}
<tr>
<td><span title="{{ .Date }}">{{ .HumanDate }}</span></td>
<td>
{{ if .HasParent }}
<a href="patch/{{ .Hash }}">patch</a>
{{ end }}
</td>
<td><pre>{{ .Summary }}</pre></td>
</tr>
{{ end }}
</tbody>
</table>
{{ end }}