{% extends "base.html" %} {% block title %}Upload Media{% endblock %} {% block content %}

Upload Media File

Go to Media List
{{ form.hidden_tag() }}
{{ form.entity_type(class="form-select", id="entity_type", required=True) }} Select the record type to associate the file with

{{ form.file(class="form-control", required=True) }} Supported formats: images (JPG, PNG, TIFF), documents (PDF, DOCX), videos (MP4, AVI), audio (MP3, WAV), 3D models (OBJ, STL, PLY, GLTF/GLB)
{{ form.description(class="form-control", rows=3, placeholder="Media file description...") }}
{{ form.author(class="form-control", placeholder="Name of author or photographer") }}
Cancel
{% endblock %}