You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
459 B

<html>
<body>
{% if course %}
<h1>Welcome in the course {{ course.title }}!</h1>
<p>
{{ course.summary }}
</p>
<p>
This course is for {{ course.getLevel }} students
</p>
<p>
There's only {{ course.places }} places
</p>
{% else %}
<h1>No course found!</h1>
{% endif %}
</body>
</html>