22 lines
713 B
Django/Jinja
22 lines
713 B
Django/Jinja
{% extends 'base.html.j2' %}
|
|
|
|
{% block title %}Upload Media{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Upload Media to Namespace '{{ namespace.name }}'</h1>
|
|
<form method="POST" enctype="multipart/form-data">
|
|
<input type="hidden" name="csrf_token" value="{{ request.session.get_csrf_token() }}">
|
|
<label for="media_file">Media File:</label>
|
|
<input type="file" name="media_file" accept="image/*,audio/*,video/*" required><br><br>
|
|
|
|
<label for="title">Title (optional):</label>
|
|
<input type="text" name="title"><br><br>
|
|
|
|
<label>
|
|
<input type="checkbox" name="is_public" checked>
|
|
Make Media Public
|
|
</label><br><br>
|
|
|
|
<button type="submit">Upload</button>
|
|
</form>
|
|
{% endblock %}
|