Add missing imgs in attendance table
This commit is contained in:
parent
f24f08c546
commit
6bf153931d
3 changed files with 8 additions and 3 deletions
|
@ -55,3 +55,7 @@
|
|||
content: 'pusta';
|
||||
background: grey;
|
||||
}
|
||||
.presentData img {
|
||||
margin: 0 auto;
|
||||
display: block;
|
||||
}
|
||||
|
|
|
@ -156,7 +156,7 @@ router.get('/Default/123456/Frekwencja.mvc', (req, res) => {
|
|||
lateness: category.Spoznienie,
|
||||
excused: category.Usprawiedliwione,
|
||||
deleted: category.Usuniete,
|
||||
attendanceInfo: category.Nazwa
|
||||
attendanceInfo: _.capitalize(category.Nazwa)
|
||||
};
|
||||
}), "number"),
|
||||
stats: require("../../data/opiekun/frekwencja-statystyki"),
|
||||
|
|
|
@ -36,15 +36,16 @@ append content
|
|||
each cell in item
|
||||
td.padding-zero
|
||||
div(class={
|
||||
'x-obecnosc': cell.presence && !cell.lateness && "nieobecny z przyczyn szkolnych" !== cell.attendanceInfo,
|
||||
'x-obecnosc': cell.presence && !cell.lateness && "Nieobecny z przyczyn szkolnych" !== cell.attendanceInfo,
|
||||
'x-nieobecnosc-nieuspr': cell.absence && !cell.excused,
|
||||
'x-nieobecnosc-uspr': cell.absence && cell.excused,
|
||||
'x-nieobecnosc-przycz-szkol': "nieobecny z przyczyn szkolnych" === cell.attendanceInfo,
|
||||
'x-nieobecnosc-przycz-szkol': "Nieobecny z przyczyn szkolnych" === cell.attendanceInfo,
|
||||
'x-sp-nieusprawiedliwione': cell.lateness && !cell.excused,
|
||||
'x-sp-spr': cell.lateness && cell.excused,
|
||||
'x-sp-zwolnienie': cell.exemption,
|
||||
'x-sp-nieobecny-w-oddziale': cell.deleted
|
||||
})
|
||||
img(alt=cell.attendanceInfo, title=cell.attendanceInfo)
|
||||
span= cell.subject
|
||||
|
||||
+nav
|
||||
|
|
Loading…
Reference in a new issue