nidus-sync/rmo/template/district-list.html
Eli Ribble 7ee2f72b8e
Add district list to report mosquitoes online
Makes it easier at a conference to find the district we're talking to
2026-02-02 14:23:22 +00:00

28 lines
506 B
HTML

{{template "base.html" .}}
{{define "title"}}Districts{{end}}
{{define "extraheader"}}
{{end}}
{{define "content"}}
<!-- Main Content -->
<main>
<h1>District List</h1>
<table>
<tbody>
<tr>
<th>Logo</th>
<th>Name</th>
<th>URL</th>
</tr>
{{ range .Districts }}
<tr>
<td><a href="{{.URLWebsite}}"><img src="{{.URLLogo}}"></img></a></td>
<td>{{.Name}}</td>
<td><a href="{{.URLRMO}}">{{.URLRMO}}</a></td>
</tr>
{{ end }}
</tbody>
</table>
</main>
{{end}}