frontend for xcvr appview

this probably should make things make more sense haha

+5 -3
+5 -3
src/routes/b/[id]/+page.svelte
··· 29 {/if} 30 {#if data.ban.till} 31 <p> 32 - {#if data.ban.till > Date.now()} 33 - the ban will end on {dumbAbsoluteTimestamp(data.ban.till)}. 34 {:else} 35 - the ban ended {smartAbsoluteTimestamp(data.ban.till)} 36 {/if} 37 </p> 38 {/if}
··· 29 {/if} 30 {#if data.ban.till} 31 <p> 32 + {#if Date.parse(data.ban.till) > Date.now()} 33 + the ban will end on {dumbAbsoluteTimestamp( 34 + Date.parse(data.ban.till), 35 + )}. 36 {:else} 37 + the ban ended {smartAbsoluteTimestamp(Date.parse(data.ban.till))} 38 {/if} 39 </p> 40 {/if}