28 lines
664 B
HTML
28 lines
664 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Title</title>
|
|
</head>
|
|
<body>
|
|
<ul>
|
|
{% for exercise in exercises %}
|
|
<li>
|
|
<h1>
|
|
{{ exercise.name }}
|
|
</h1>
|
|
<div><video src="http:{{ exercise.exercise.video_file }}" controls></video></div>
|
|
<div>{{ exercise.description }}</div>
|
|
<h2>Thumbnails</h2>
|
|
<div>
|
|
{% for thumbnail in exercise.exercise.thumbnails %}
|
|
<img src="{{ thumbnail.image_filepath }}">
|
|
{% endfor %}
|
|
<br>
|
|
</div>
|
|
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</body>
|
|
</html> |