nidus-sync/html/template/sync/review/root.html

33 lines
825 B
HTML
Raw Normal View History

{{ template "sync/layout/authenticated.html" . }}
{{ define "title" }}Planning{{ end }}
{{ define "extraheader" }}
<script
type="text/javascript"
src="//unpkg.com/maplibre-gl@5.0.1/dist/maplibre-gl.js"
></script>
<script src="/static/js/map-aggregate.js"></script>
<script>
function onLoad() {}
window.addEventListener("load", onLoad);
</script>
{{ end }}
{{ define "content" }}
2026-03-06 18:56:05 +00:00
<a class="card-link" href="/review/pool">
<div class="card" style="width: 24rem;">
<img
alt="overhead pool"
class="card-img-top"
src="/static/img/pool-overhead.jpg"
/>
<div class="card-body">
<h1>Imported Pools</h1>
<p>
Pools that have been imported with their aerial imagery appear here
waiting for human review before being added to the system
</p>
</div>
</div>
2026-03-06 18:56:05 +00:00
</a>
{{ end }}