wiki/templates/recent.html
Peter Stuifzand 607ab7ce15
All checks were successful
continuous-integration/drone/push Build is passing
Give recent changes table more space
2020-08-31 11:50:47 +02:00

23 lines
609 B
HTML

{{ define "navbar" }}
{{ end }}
{{ define "content" }}
<h1 class="title">{{ .Title }}</h1>
<table class="table">
<col width="10%">
<col width="150px">
<col width="100px">
<col width="auto">
{{ range $index, $change := .Recent }}
<tr>
<td>{{ $change.DateSummary }}</td>
<td>{{ $change.TimeSummary }}</td>
<td>{{ $change.Count }}</td>
<td><a href="/{{ $change.Page }}">{{ $change.Page }}</a></td>
<td>{{ $change.Body }}</td>
</tr>
{{ end }}
</table>
{{ end }}