Fix exercices' theme loading in admin
This commit is contained in:
parent
64b9e9a251
commit
5b84e4bfdb
@ -273,7 +273,7 @@ angular.module("FICApp")
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
.factory("ThemedExercice", function($resource) {
|
.factory("ThemedExercice", function($resource) {
|
||||||
return $resource("/api/themes/:themeId/exercices/:exerciceId", { exerciceId: '@id' }, {
|
return $resource("/api/themes/:themeId/exercices/:exerciceId", { themeId: '@id', exerciceId: '@idExercice' }, {
|
||||||
update: {method: 'PUT'}
|
update: {method: 'PUT'}
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<div ng-show="theme.id" class="col-md-8" ng-controller="ExercicesListController">
|
<div ng-if="theme.id" class="col-md-8" ng-controller="ExercicesListController">
|
||||||
<h3>
|
<h3>
|
||||||
Exercices ({{ exercices.length }})
|
Exercices ({{ exercices.length }})
|
||||||
<button type="button" ng-click="show('new')" class="float-right btn btn-sm btn-primary ml-2"><span class="glyphicon glyphicon-plus" aria-hidden="true"></span> Ajouter un exercice</button>
|
<button type="button" ng-click="show('new')" class="float-right btn btn-sm btn-primary ml-2"><span class="glyphicon glyphicon-plus" aria-hidden="true"></span> Ajouter un exercice</button>
|
||||||
|
Loading…
Reference in New Issue
Block a user