Files
fnx_web/svelte/src/file_viewer/viewers/Abuse.svelte

23 lines
422 B
Svelte
Raw Normal View History

<script>
import TextBlock from "./TextBlock.svelte"
export const set_file = f => file = f
let file = {
id: "",
name: "",
abuse_type: "",
abuse_reporter_name: "",
}
</script>
2022-01-17 14:10:50 +01:00
<br/>
2022-02-08 21:05:08 +01:00
<TextBlock center={true}>
<h1>Unavailable for legal reasons</h1>
<p>
This file has received an abuse report and was taken down.
</p>
<p>
Type of abuse: {file.abuse_type}. Reporter: {file.abuse_reporter_name}.
</p>
</TextBlock>