Liste des Formations
@if (isLoading()) {
... loading formations
}
@else if (errorMessage()){
An error occurred: {{ errorMessage() }}
}
@else {
@if (formations()) {
Formation |
Durée |
Catégorie |
@for (f of formations(); track f) {
{{ f.cours }} |
{{ f.duration }} |
{{ f.category }} |
}
}
@else {
Pas de formations
}
}