{% extends "base.html" %} {% block title %}Images - SEREACT Web Client{% endblock %} {% block content %}

Images

Upload Image
Clear
{% if images %}
{% for image in images %}
{{ image.filename }}
{{ image.filename }}

{{ image.description or 'No description' }}

{{ (image.file_size / 1024 / 1024) | round(2) }} MB
{{ image.upload_date.strftime('%Y-%m-%d') if image.upload_date else 'Unknown' }}
{% if image.tags %}
{% for tag in image.tags %} {{ tag }} {% endfor %}
{% endif %} {% if image.has_embedding %}
AI Ready
{% endif %}
{% endfor %}
{% if total > limit %}
Showing {{ ((page - 1) * limit + 1) }} to {{ [page * limit, total] | min }} of {{ total }} images
{% endif %} {% else %}

No Images Found

Upload your first image to get started.

Upload First Image
{% endif %} {% endblock %} {% block scripts %} {% endblock %}