initial commit
This commit is contained in:
28
templates/episode.html
Normal file
28
templates/episode.html
Normal file
@@ -0,0 +1,28 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user