diff --git a/src/App.svelte b/src/App.svelte
index 3e30b8ad..251f083e 100644
--- a/src/App.svelte
+++ b/src/App.svelte
@@ -69,6 +69,7 @@
import Donations from "./components/donations/Donations.svelte";
import DonationDetail from "./components/donations/DonationDetail.svelte";
import GroupDetail from "./components/groups/GroupDetail.svelte";
+import ScanStationsOverview from "./components/scanstations/ScanStationsOverview.svelte";
store.init();
registerSW();
@@ -180,6 +181,12 @@
+
+ You don't have any scanstations yet.
+ Add the first scanstation
+
{$_('contacts-are-being-loaded')}
+{$_('this-might-take-a-moment')}
++ {$_('name')} + | ++ {$_('groups')} + | ++ {$_('address')} + | ++ {$_('action')} + | +|
---|---|---|---|---|
+
+
+
+
+
+ {t.firstname}
+ {t.middlename || ''}
+ {t.lastname}
+
+ |
+
+
+
+
+
+
+ {#if t.groups.length > 0}
+ {#each t.groups as g}
+ {#if g.responseType === 'RUNNERORGANIZATION'}
+ {g.name}
+ {:else}
+ {g.parentGroup.name}
+ >
+ {g.name}
+ {/if}
+ {/each}
+ {:else}
+ {$_('contact-is-not-a-member-in-any-group')}
+ {/if}
+
+ |
+
+
+
+
+
+
+ {#if t.address.address1 !== null}
+ {t.address.address1}
+ + {t.address.address2 || ''} + {t.address.postalcode} + {t.address.city} + {t.address.country} + {/if} + |
+ {#if active_deletes[t.id] === true}
+ + + + | + {:else} ++ {$_('details')} + {#if store.state.jwtinfo.userdetails.permissions.includes('TEAM:DELETE')} + + {/if} + | + {/if} +