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
2021-01-20 22:04:59 +01:00

40 lines
1.1 KiB
Text

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