88 lines
2.0 KiB
Vue
88 lines
2.0 KiB
Vue
<template>
|
|
|
|
<div id='CONTAINER' class='list'>
|
|
|
|
<div class='list container' data-anim-incoming='1' :data-anim-bounce='gstore.nav_anim.out?1:0'>
|
|
|
|
<!-- <button @click='gstore.nav_out($router)'>Retour</button> -->
|
|
|
|
<!-- FILTERS -->
|
|
<!-- <section class='filter'>
|
|
|
|
<div>enseignant</div>
|
|
<div>volume horaire</div>
|
|
<div>formations</div>
|
|
|
|
</section> -->
|
|
<section class='filter'></section>
|
|
|
|
<!-- COURS -->
|
|
<section
|
|
v-for='c in gstore.manage.cours'
|
|
:data-id='c.idCours'>
|
|
|
|
<div>Cours</div>
|
|
<div :data-prof='c.idProf'>{{ c.idProf ? `${c.firstName} ${c.lastName}` : 'Aucun enseignant affecté' }}</div>
|
|
<div>{{ c.volume }}</div>
|
|
<div class='taglist'>
|
|
<span v-for='f in c.formations' class='tag'>{{ gstore.form_by_id(f).labelForm || '???' }}</span>
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
<!-- TD -->
|
|
<section
|
|
v-for='td in gstore.manage.td'
|
|
:data-id='td.idTD'
|
|
data-anim-incoming='1'
|
|
:data-anim-bounce='gstore.nav_anim.out?1:0'>
|
|
|
|
<div>TD</div>
|
|
<div :data-prof='td.idProf'>{{ td.idProf ? `${td.firstName} ${td.lastName}` : 'Aucun enseignant affecté' }}</div>
|
|
<div>{{ td.volume }}</div>
|
|
<div class='taglist'>
|
|
<span v-for='f in td.formations' class='tag'>{{ gstore.form_by_id(f).labelForm || '???' }}</span>
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
<!-- TP -->
|
|
<section
|
|
v-for='tp in gstore.manage.tp'
|
|
:data-id='tp.idTP'
|
|
data-anim-incoming='1'
|
|
:data-anim-bounce='gstore.nav_anim.out?1:0'>
|
|
|
|
<div>TP</div>
|
|
<div :data-prof='tp.idProf'>{{ tp.idProf ? `${tp.firstName} ${tp.lastName}` : 'Aucun enseignant affecté' }}</div>
|
|
<div>{{ tp.volume }}</div>
|
|
<div class='taglist'>
|
|
<span v-for='f in tp.formations' class='tag'>{{ gstore.form_by_id(f).labelForm || '???' }}</span>
|
|
</div>
|
|
|
|
</section>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
name: 'CONTAINER_VIEW',
|
|
data(){
|
|
return { gstore: gstore.get }
|
|
},
|
|
beforeMount(){
|
|
gstore.get.manage_load(this.$route.params.code, this.$router);
|
|
}
|
|
}
|
|
|
|
</script> |