2026-02-07 17:55:25 +00:00
|
|
|
{{ template "rmo/layout/base.html" . }}
|
2026-02-07 05:51:21 +00:00
|
|
|
|
|
|
|
|
{{ 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 }}" /></a>
|
|
|
|
|
</td>
|
|
|
|
|
<td>{{ .Name }}</td>
|
|
|
|
|
<td><a href="{{ .URLRMO }}">{{ .URLRMO }}</a></td>
|
|
|
|
|
</tr>
|
|
|
|
|
{{ end }}
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</main>
|
|
|
|
|
{{ end }}
|