{% extends 'base.html' %} {% block title %} {{course.title}} {% endblock %} {% block content %} << Return to the main page..

{{course.title}}

{{ course.description }}

Pr. {{course.teacher}}
Create new week
{% for class in course.courses.all %}
Week #{{forloop.counter}}
Topic: {{ class.title }}

Description: {{ class.description }}

{{ class.file }}

Created at: {{ class.created_at }} - by: {{ course.teacher }}

{% endfor %}
<< Return to the main page.. {% endblock %}