diff --git a/svelte/src/admin_panel/IPBans.svelte b/svelte/src/admin_panel/IPBans.svelte index 721b89a..25c1b4b 100644 --- a/svelte/src/admin_panel/IPBans.svelte +++ b/svelte/src/admin_panel/IPBans.svelte @@ -172,8 +172,8 @@ onMount(get_bans);
Reason | +Reporter | +Ban time | +Expire time | +File | +
{offence.reason} | +{offence.reporter} | +{formatDate(offence.ban_time, true, true, false)} | +{formatDate(offence.expire_time, true, true, false)} | ++ {#if offence.file_link} + + {offence.file_name} + + {/if} + | +
+ Your user account has been banned from uploading to + pixeldrain due to violation of the + content policy. Below is a list of + files originating from your account which have been blocked: +
+ +File | +Reason | +Ban date | +Expiry date | +
+ {#if offence.file_link} + + {offence.file_name} + + {/if} + | +{offence.reason} | +{formatDate(offence.ban_time, false, false, false)} | +{formatDate(offence.expire_time, false, false, false)} | +
+ If you would like to dispute your account you can mail me at + support@pixeldrain.com. Please do not mail unless you have a + good reason. If you do not provide a valid reason why the ban + should be reversed your e-mail will be ignored. And do not + forget to put your username ({window.user.username}) in the + e-mail. +
+ + +{:else if result !== null && result.ip_offences.length > 0} +Your IP address ({result.address}) has been banned from uploading to pixeldrain due to violation of the @@ -56,11 +103,11 @@ onMount(async () => {