{% extends 'base.html' %} {% block title %} University {% endblock %} {% block content %}
{% for course in courses %}
Course
{{course.title}}

{{course.description}}

{% endfor %}
{% endblock %}