1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
letu/views/pages/edt.pug

41 lines
1.1 KiB
Text
Raw Normal View History

2020-11-03 11:40:54 +01:00
extends ../template/navbar
block content
2021-01-20 22:04:59 +01:00
div#details.detailsedt.invisible
p.eventName
p.eventLocation
p.eventTeacher
p.eventTarget
p.eventTime
p.eventUE
2020-11-23 20:34:46 +01:00
div
2021-01-20 22:04:59 +01:00
table#edttable
thead
2020-11-23 20:34:46 +01:00
th Monday
th Tuesday
th Wednesday
th Thursday
th Friday
2021-01-20 22:04:59 +01:00
tbody
- for (let i = 0; i < 5; i++)
tr
- for (let j = 0; j < 5; j++)
td(id=`${i}${j}`)
p.eventName
p.eventLocation
2020-11-23 20:34:46 +01:00
2021-01-20 22:04:59 +01:00
div#edtweek.row
2020-11-23 20:34:46 +01:00
div(class="col s3 offset-s1")
2021-01-20 22:04:59 +01:00
i#previous(class="large material-icons") fast_rewind
2020-11-23 20:34:46 +01:00
div(class="col s4")
2021-01-20 22:04:59 +01:00
h3#date
2020-11-23 20:34:46 +01:00
div(class="col s3")
2021-01-20 22:04:59 +01:00
i#next(class="large material-icons") fast_forward
2020-11-23 20:34:46 +01:00
2021-01-20 22:04:59 +01:00
div#marksdetailsbackground.invisible
script#removeMe.
let groups = !{JSON.stringify(session.user.Groups)};
document.getElementById("removeMe").remove();
script(src="/javascripts/edt.js")