[webpack.ue.manage] minmod

This commit is contained in:
xdrm-brackets 2018-03-18 16:31:03 +01:00
parent d43c2244a0
commit 861fb49846
2 changed files with 9 additions and 3 deletions

View File

@ -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> <option v-for='p in gstore.manage.prof' :value='p.idProfesseur' v-show='p.idProfesseur!=c.idProf'>{{ `${p.firstName} ${p.lastName}` }}</option>
</select> </select>
<div>Cours</div> <div>Cours</div>
<div>{{ c.volume }}</div> <div><span class='mono'>{{ c.volume }}</span> heures</div>
<div class='taglist'> <div class='taglist'>
<div v-for='f in c.formations' data-action> <div v-for='f in c.formations' data-action>
<span class='tag'>{{ gstore.form_by_id(f).labelForm || '???' }}</span> <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> <option v-for='p in gstore.manage.prof' :value='p.idProfesseur' v-show='p.idProfesseur!=td.idProf'>{{ `${p.firstName} ${p.lastName}` }}</option>
</select> </select>
<div>TD</div> <div>TD</div>
<div>{{ td.volume }}</div> <div><span class='mono'>{{ td.volume }}</span> heures</div>
<div class='taglist'> <div class='taglist'>
<div v-for='f in td.formations' data-action> <div v-for='f in td.formations' data-action>
<span class='tag'>{{ gstore.form_by_id(f).labelForm || '???' }}</span> <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> <option v-for='p in gstore.manage.prof' :value='p.idProfesseur' v-show='p.idProfesseur!=tp.idProf'>{{ `${p.firstName} ${p.lastName}` }}</option>
</select> </select>
<div>TP</div> <div>TP</div>
<div>{{ tp.volume }}</div> <div><span class='mono'>{{ tp.volume }}</span> heures</div>
<div class='taglist'> <div class='taglist'>
<div v-for='f in tp.formations' data-action> <div v-for='f in tp.formations' data-action>
<span class='tag'>{{ gstore.form_by_id(f).labelForm || '???' }}</span> <span class='tag'>{{ gstore.form_by_id(f).labelForm || '???' }}</span>

View File

@ -48,4 +48,10 @@ a{
/* (6) pointer cursor (2 times the class to increase priority) */ /* (6) pointer cursor (2 times the class to increase priority) */
.pointer.pointer{ .pointer.pointer{
cursor: pointer; cursor: pointer;
}
/* (7) Mono font */
.mono{
font-family: 'Mono';
font-size: .9em;
} }