mirror of
https://github.com/ebosas/microservices.git
synced 2025-05-31 22:09:33 +02:00
27 lines
1.0 KiB
HTML
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 }} |