Add missing imgs in attendance table

This commit is contained in:
Mikołaj Pich 2018-10-01 00:17:16 +02:00
parent f24f08c546
commit 6bf153931d
No known key found for this signature in database
GPG key ID: F62B26E36D4C4BAA
3 changed files with 8 additions and 3 deletions

View file

@ -55,3 +55,7 @@
content: 'pusta';
background: grey;
}
.presentData img {
margin: 0 auto;
display: block;
}

View file

@ -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"),

View file

@ -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