icp/src/courses/templates/courses/course_list.html

8 lines
115 B
HTML

<h1>Courses</h1>
<ul>
{% for contact in object_list %}
<li class="contact">{{ contact }}</li>
{% endfor %}
</ul>