{% extends "base.html" %} {% block title %}Edit {{ image.filename }} - SEREACT Web Client{% endblock %} {% block content %}
Edit Image
A description of what the image contains or represents
Tags help organize and search for images. Example: nature, landscape, sunset
Back to Image
Image Preview
{{ image.filename }}
{{ image.filename }}
Current Information
Size:
{{ (image.file_size / 1024 / 1024) | round(2) }} MB
Type:
{{ image.content_type }}
Uploaded:
{{ image.upload_date.strftime('%Y-%m-%d') if image.upload_date else 'Unknown' }}
AI Status:
{% if image.has_embedding %} Processed {% else %} Processing {% endif %}
{% if image.tags %}
Current Tags
{% for tag in image.tags %} {{ tag }} {% endfor %}
{% endif %}
Quick Actions
View Full Details Download Image {% if image.has_embedding %} Search Similar {% endif %}
Tips for Better Metadata
Descriptions
  • Describe what you see in the image
  • Include context and important details
  • Mention people, objects, and activities
  • Use natural, descriptive language
Tags
  • Use specific, descriptive tags
  • Include objects, colors, emotions, locations
  • Separate multiple tags with commas
  • Use consistent naming conventions
{% endblock %}