hsa-app/internal/web/templates/export.html

10 lines
505 B
HTML
Raw Normal View History

{{define "title"}}Export{{end}}
{{define "content"}}
<h1>Export database</h1>
<a class="button blue" href="/export/db?blobs=true">Download full DB (with images)</a>
<a class="button blue" href="/export/db?blobs=false">Download metadata only (no images)</a>
<p><small>The full DB is a complete, self-contained snapshot — metadata and every
receipt image in one SQLite file. Metadata-only omits the image blobs (~99% of the size).</small></p>
<p style="text-align:center"><a href="/">Back</a></p>
{{end}}