{% extends "base.html" %} {% 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 %}
📥 Download 🌐 View Raw {% if current_user.is_authenticated %} {% endif %}
{% endblock %} {% block footer %} {{ super() }} {% endblock %}