[webpack.ue.manage] minmod
This commit is contained in:
parent
d43c2244a0
commit
861fb49846
|
@ -27,7 +27,7 @@
|
|||
<option v-for='p in gstore.manage.prof' :value='p.idProfesseur' v-show='p.idProfesseur!=c.idProf'>{{ `${p.firstName} ${p.lastName}` }}</option>
|
||||
</select>
|
||||
<div>Cours</div>
|
||||
<div>{{ c.volume }}</div>
|
||||
<div><span class='mono'>{{ c.volume }}</span> heures</div>
|
||||
<div class='taglist'>
|
||||
<div v-for='f in c.formations' data-action>
|
||||
<span class='tag'>{{ gstore.form_by_id(f).labelForm || '???' }}</span>
|
||||
|
@ -62,7 +62,7 @@
|
|||
<option v-for='p in gstore.manage.prof' :value='p.idProfesseur' v-show='p.idProfesseur!=td.idProf'>{{ `${p.firstName} ${p.lastName}` }}</option>
|
||||
</select>
|
||||
<div>TD</div>
|
||||
<div>{{ td.volume }}</div>
|
||||
<div><span class='mono'>{{ td.volume }}</span> heures</div>
|
||||
<div class='taglist'>
|
||||
<div v-for='f in td.formations' data-action>
|
||||
<span class='tag'>{{ gstore.form_by_id(f).labelForm || '???' }}</span>
|
||||
|
@ -97,7 +97,7 @@
|
|||
<option v-for='p in gstore.manage.prof' :value='p.idProfesseur' v-show='p.idProfesseur!=tp.idProf'>{{ `${p.firstName} ${p.lastName}` }}</option>
|
||||
</select>
|
||||
<div>TP</div>
|
||||
<div>{{ tp.volume }}</div>
|
||||
<div><span class='mono'>{{ tp.volume }}</span> heures</div>
|
||||
<div class='taglist'>
|
||||
<div v-for='f in tp.formations' data-action>
|
||||
<span class='tag'>{{ gstore.form_by_id(f).labelForm || '???' }}</span>
|
||||
|
|
|
@ -48,4 +48,10 @@ a{
|
|||
/* (6) pointer cursor (2 times the class to increase priority) */
|
||||
.pointer.pointer{
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* (7) Mono font */
|
||||
.mono{
|
||||
font-family: 'Mono';
|
||||
font-size: .9em;
|
||||
}
|
Loading…
Reference in New Issue