{% extends "base.html" %} {% block title %}{{ file.path.split('/')[-1] }} - Filenthropist{% endblock %} {% block content %}

{{ file.path.split('/')[-1] }}

{{ file.path }}

Toegangsniveau

{{ file.access_level }}

Bewaartermijn

{{ file.retention_status }}

Documenttype

{{ file.document_type }}
{{ file.classification_method }} ({{ "%.0f"|format(file.classification_confidence * 100) }}%)

Beoordeling

{{ file.user_decision }}
{% if advisory %}

Aanbeveling

{{ advisory.message }}

{% if advisory.legal_basis %} {% endif %}
{% endif %}

Metadata

Grootte{{ file.size }} bytes
Aangemaakt{{ file.created_at }}
Gewijzigd{{ file.modified_at }}
Gescand{{ file.scanned_at }}
Hash{{ file.hash[:16] }}...
Extractie{{ file.extraction_method }}{% if file.ocr_confidence %} (OCR-betrouwbaarheid: {{ "%.0f"|format(file.ocr_confidence * 100) }}%){% endif %}
{% if file.pii_detected %}

PII gedetecteerd

{% for pii_type in file.pii_types %} {{ pii_type }} {% endfor %}
{% endif %} {# A3.4 — Redacted preview with styled badges #} {% if redacted_preview %}

Tekstvoorbeeld (geanonimiseerd)

{{ redacted_preview | e | replace('[NAAM]', '[NAAM]') | replace('[PERSOON]', '[PERSOON]') | replace('[BSN]', '[BSN]') | replace('[DATUM]', '[DATUM]') | replace('[GEBOORTEDATUM]', '[GEBOORTEDATUM]') | replace('[ADRES]', '[ADRES]') | replace('[LOCATIE]', '[LOCATIE]') | replace('[IBAN]', '[IBAN]') | replace('[REKENINGNUMMER]', '[REKENINGNUMMER]') | replace('[EMAIL]', '[EMAIL]') | replace('[TELEFOON]', '[TELEFOON]') | replace('[TELEFOONNUMMER]', '[TELEFOONNUMMER]') | replace('[BEDRIJF]', '[BEDRIJF]') | replace('[ORGANISATIE]', '[ORGANISATIE]') | safe }}
{% elif file.text_preview %}

Tekstvoorbeeld

{{ file.text_preview }}
{% endif %} {# A3.3 — Action form for user decisions #}

Beoordeling

{% if file.user_notes and file.decision_at %}

Laatste beoordeling

Beoordeeld op: {{ file.decision_at }}

{{ file.user_notes }}

{% endif %} {% endblock %}