{% extends "base.html" %} {% block title %}{{ image.filename }} - SEREACT Web Client{% endblock %} {% block content %}
{{ image.filename }}
{{ image.filename }}
Image Information
Filename:
{{ image.filename }}
Original:
{{ image.original_filename }}
Size:
{{ (image.file_size / 1024 / 1024) | round(2) }} MB
Type:
{{ image.content_type }}
Uploaded:
{{ image.upload_date.strftime('%Y-%m-%d %H:%M') if image.upload_date else 'Unknown' }}
Uploader:
{{ image.uploader_id }}
Team:
{{ image.team_id }}
{% if image.collection_id %}
Collection:
{{ image.collection_id }}
{% endif %}
AI Processing Status
{% if image.has_embedding %} {% else %} {% endif %}
{% if image.description %}
Description

{{ image.description }}

{% endif %} {% if image.tags %}
Tags
{% for tag in image.tags %} {{ tag }} {% endfor %}
{% endif %} {% if image.metadata %}
Technical Metadata
{{ image.metadata | tojson(indent=2) }}
{% endif %}
Actions
Edit Image Download Original {% if image.has_embedding %} {% endif %}
{% endblock %} {% block scripts %} {% endblock %}