1
0
mirror of https://github.com/ebosas/microservices.git synced 2025-05-31 22:09:33 +02:00
2021-10-10 18:49:39 +03:00

27 lines
1.0 KiB
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 }}