{% extends "base.html" %} {% load crispy_forms_tags %} {% block title %}{{ action }} Material — {{ course.name }}{% endblock %} {% if user.is_teacher %}{% block nav_teacher_courses %}active{% endblock %} {% else %}{% block nav_courses %}active{% endblock %}{% endif %} {% block content %}
{% csrf_token %} {% crispy form %}
{% if material and material.file %}

Current file:

{{ material.file.name|cut:"course_materials/" }}

Upload a new file to replace it, or leave blank to keep the current one.

{% endif %}

File uploads: Maximum {{ max_file_size_mb }} MB per file. For videos, we recommend using a YouTube link instead — it loads faster and saves storage.

{% if action == 'Edit' %}

Order: Lower numbers appear first in the student view. Change this number to reposition this material in the list.

{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}