frontend: new page that list videos

This commit is contained in:
nemunaire 2017-04-02 20:29:15 +02:00 committed by Pierre-Olivier Mercier
commit d2d7b77058
2 changed files with 20 additions and 0 deletions

View 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>