1
0
mirror of https://github.com/ebosas/microservices.git synced 2025-06-06 22:16:11 +02:00
2021-11-06 21:09:40 +02:00

27 lines
1020 B
HTML

{{define "content" -}}
<div class="container">
<h3 class="my-4 ps-2">Recent messages ({{.Data.Count}}/{{.Data.Total}})</h3>
<table class="table">
<thead>
<tr>
<th scope="col">Time</th>
<th scope="col">Message</th>
<th scope="col">Source</th>
</tr>
</thead>
<tbody>
{{- range .Data.Messages}}
<tr>
<td>{{.TimeFmt}} ago</td>
<td>{{.Text}}</td>
<td>{{.Source}}</td>
</tr>
{{- else}}
<tr>
<td colspan="3">No messages</td>
</tr>
{{- end}}
</tbody>
</table>
</div>
{{- end}}