frontend: new page that list videos
This commit is contained in:
parent
58fef47ff4
commit
d2d7b77058
2 changed files with 20 additions and 0 deletions
10
frontend/static/views/videos.html
Normal file
10
frontend/static/views/videos.html
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
<div class="list-group">
|
||||
<ng-repeat ng-repeat="theme in themes">
|
||||
<h4 class="list-group-item">
|
||||
{{ theme.name }}
|
||||
</h4>
|
||||
<ng-repeat ng-repeat="(eid,exercice) in theme.exercices">
|
||||
<a class="list-group-item" href="{{ my.exercices[eid].video_uri }}">{{ exercice.title }}</a>
|
||||
</ng-repeat>
|
||||
</ng-repeat>
|
||||
</div>
|
||||
Reference in a new issue