{% extends "base.html" %} {% set load_tui_editor = true %} {% block title %}Media Viewer{% endblock %} {% block content %}

Viewing Media: {{ filename }}

MIME Type: {{ mime_type }}

{% if mime_type.startswith("image/") %} Image {% elif mime_type.startswith("video/") %} {% elif mime_type.startswith("audio/") %} {% elif mime_type == "application/pdf" %} {% endif %}
{% if current_user.is_authenticated %} {% endif %} {% if mime_type.startswith("image/") and can_edit and has_gps %} {% endif %}
{% if metadata %} {% for track in metadata %} {% for key, value in track.items() %} {% if key == "GPS Data" and value.get("Decimal Coordinates") %}

📍 Location Preview

{% endif %} {% endfor %} {% endfor %} {% endif %} {% if mime_type.startswith("image/") and can_edit %}
{% endif %} {% endblock %} {% block scripts %} {{ super() }} {% endblock %} {% block footer %} {{ super() }} {% endblock %}