{% extends "base.html" %} {% load django_bootstrap5 %} {% block title %}Upload Files{% endblock title %} {% block main_content %}
Upload Files to BMA

Understanding Creative Commons licenses

CC0 1.0 Universal

The creator is giving up their copyright and allowing reusers to distribute, remix, adapt, and build upon the material in any medium or format, even for commercial purposes.

Attribution 4.0 International

Requires that reusers give credit to the creator. It allows reusers to distribute, remix, adapt, and build upon the material in any medium or format, even for commercial purposes.

Attribution-ShareAlike 4.0 International

Requires that reusers give credit to the creator. It allows reusers to distribute, remix, adapt, and build upon the material in any medium or format, even for commercial purposes. If others remix, adapt, or build upon the material, they must license the modified material under identical terms.

Enter File(s) Metadata

{% csrf_token %} {% for field in form %} {% if field.name != "files" %} {% bootstrap_field field %} {% endif %} {% endfor %}

Pick File(s) to Upload

{% csrf_token %} {% for field in form %} {% if field.name == "files" %} {% bootstrap_field field %} {% endif %} {% endfor %} * Required
{# the preview template #} {% endblock main_content %}