{% extends "base.html" %} {% block title %}{{ file.filename }}{% endblock %} {% block content %}

{{ file.filename }}

{% if saved %}

Search text saved.

{% endif %} {% if file.content_hash %} {% endif %} {% if file.uploaded_by %} {% endif %}
File ID{{ file.id }}
Filename{{ file.filename }}
Content Type{{ file.content_type or "unknown" }}
Size{{ file.size }} bytes
Content Hash{{ file.content_hash }}
Uploaded By{{ file.uploaded_by }}
Created{{ file.created_at }}
{% if file.content_type and file.content_type.startswith("image/") %}

{{ file.filename }}

{% endif %}

Download {{ file.filename }}

Search text

{% if can_edit %}

{% elif file.search_text %}

{{ file.search_text }}

{% else %}

No search text set.

{% endif %} {% endblock %}