diff --git a/svelte/src/home_page/UploadStats.svelte b/svelte/src/home_page/UploadStats.svelte index 47250eb..d95f865 100644 --- a/svelte/src/home_page/UploadStats.svelte +++ b/svelte/src/home_page/UploadStats.svelte @@ -78,41 +78,49 @@ const stats_update = () => {
- Here you can see how often your files are viewed, downloaded and how - much bandwidth they consume. The buttons below can be pressed to adjust - the timeframe. -
- -- Total bandwidth usage is the combined bandwidth usage of all the files - on your account. This includes paid transfers. -
-- A premium transfer is when a file is downloaded using the data cap on - your subscription plan. These can be files you downloaded from other - people, or other people downloading your files if you have bandwidth - sharing enabled. Bandwidth sharing can be changed on - the sharing page. -
-- A view is counted when someone visits the download page of one of - your files. Views are unique per user per file. -
-- Downloads are counted when a user clicks the download button on one - of your files. It does not matter whether the download is completed - or not, only the start of the download is counted. -
-Time | +File name | +Event | +
+ {formatDate(row.time, true, true, false)} + | ++ {#if row.event === "file_instance_blocked"} + {row.file_name} + {:else if row.event === "filesystem_node_blocked"} + {row.file_name} + {:else} + {row.file_name} + {/if} + | ++ {#if row.event === "file_instance_blocked" || row.event === "filesystem_node_blocked"} + Blocked for abuse + {:else if row.event === "file_instance_expired"} + Expired + {:else if row.event === "file_instance_lost"} + File has been lost + {/if} + | +