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

27 lines
1016 B
HTML
Raw Normal View History

2021-10-07 16:23:34 +03:00
{{ define "content" }}
<div class="container">
<h3 class="my-4 ps-2">Recent messages ({{ .Count }}/{{ .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 .Messages }}
<tr>
<td>{{ .Time | fdate }}</td>
<td>{{ .Text }}</td>
<td>{{ .Source }}</td>
</tr>
{{ else }}
<tr>
<td colspan="3">No messages</td>
</tr>
{{ end }}
</tbody>
</table>
</div>
{{ end }}