Implemented donor overview and deletion

ref #78
This commit is contained in:
2021-02-20 18:26:18 +01:00
parent dee0e37a85
commit 02087a541e
5 changed files with 312 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
<script>
import { _ } from "svelte-i18n";
import donors_empty from "./donors_empty.svg";
</script>
<div class="text-center items-center justify-center">
<p class="mb-16 text-lg text-gray-500">
<img class="w-full h-44" src={donors_empty} alt="" />
<span class="font-bold">there are no donors yet</span><br />
<span>add your first donor</span>
</p>
</div>