{% extends 'base.html' %} {% block title %} Course Details {% endblock %} {% block body %}

Course Details

Id: {{ course.id }}

Name: {{ course.cname }}

Teachers (Count: {{ teachers.count }}):

{% for t in teachers %}

{{ t }}

{% endfor %}

Students (Count: {{ students.count }}):

{% for s in students %}

{{ s }}

{% endfor %} {% endblock %}