{% extends "base.html" %} {% load humanize %} {% block title %}{{ course.name }} | Student Portal{% endblock %} {% block nav_courses_student %}active{% endblock %} {% block content %}
Course Materials {{ materials|length }}
{% if materials %}
{% for m in materials %}

{% if m.description %}

{{ m.description }}

{% endif %} {% if m.material_type == 'youtube' and m.youtube_video_id %}
{{ m.title }}
Watch on YouTube {% elif m.material_type == 'upload' and m.file %} {% if m.is_pdf %}
{% endif %} Download {{ m.file_extension|upper }} File {% elif m.material_type == 'link' and m.external_url %} Open Link {% elif m.material_type == 'note' and m.text_content %}
{{ m.text_content }}
{% endif %}
{% endfor %}
{% else %}

No materials published yet. Check back soon.

{% endif %}
Assignments

Submit your work and view teacher feedback.

View Assignments
{% if quiz %}
{{ quiz.title }}
{% if quiz.description %}

{{ quiz.description }}

{% endif %}
Questions
{{ quiz.question_count }}
Pass Score
{{ quiz.pass_score }}%
Max Attempts
{% if quiz.max_attempts == 0 %}Unlimited{% else %}{{ quiz.max_attempts }}{% endif %}
Your Attempts
{{ quiz_attempts }}{% if quiz.max_attempts > 0 %}/{{ quiz.max_attempts }}{% endif %}
{% if quiz_last_score is not None %}
Last score: {{ quiz_last_score }}% {% if quiz_last_score >= quiz.pass_score %}— Passed!{% else %}— Not yet passed{% endif %}
{% endif %} {% if quiz_can_attempt %} {% if quiz_attempts == 0 %}Start Quiz{% else %}Retake Quiz{% endif %} {% else %} {% endif %}
{% endif %}
{% endblock %} {% block extra_css %} {% endblock %} {% block extra_js %} {% endblock %}