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/marks.pug

113 lines
3.8 KiB
Text
Raw Normal View History

2020-11-03 11:40:54 +01:00
extends ../template/navbar
block content
2021-01-17 11:48:14 +01:00
if student
div.row
div#marksdetails.invisible.col.s12.m8.l6.offset-m2.offset-l3
2020-11-03 11:40:54 +01:00
table
2021-01-17 11:48:14 +01:00
tr
th(colspan="2") Details
tr
td(colspan="2")#dsName
tr
td Node :
td#dsMarks
tr
td Commentaire :
td#dsComment
2020-11-03 11:40:54 +01:00
2021-01-17 11:48:14 +01:00
div#marksrow
div#evaluationTemplate.invisible(class="col s12 m6 l4")
p.evaluationName
div.grades.flex-container-marks
div#gradeTemplate.marksCursorPointer.invisible
p.gradeName
p.gradeMark
p.gradeComment
2020-11-03 11:40:54 +01:00
2021-01-17 11:48:14 +01:00
div#marksdetailsbackground.invisible
if teacher
div.row
2020-11-03 11:40:54 +01:00
div(class="col s12 m10 offset-m1 marksgroup")
2020-11-21 14:02:01 +01:00
h3 Select a group
2021-01-17 11:48:14 +01:00
div#flexgroup
2020-11-23 21:24:43 +01:00
p(onclick="marksformChange(this.getAttribute('id'))") G1S1
p(onclick="marksformChange(this.getAttribute('id'))") G2S2
p(onclick="marksformChange(this.getAttribute('id'))") G3S3
2020-11-03 11:40:54 +01:00
2021-01-17 11:48:14 +01:00
form#marksform
table#markstable
2020-11-03 11:40:54 +01:00
thead
tr
2020-11-21 14:02:01 +01:00
th Name
2020-11-03 11:40:54 +01:00
th
input(type="text" value="DS1")
th
2020-11-21 14:02:01 +01:00
input(type="text" placeholder="Add a test")
2020-11-03 11:40:54 +01:00
tbody
tr
td Test
td
input(type="number" value="16")
td
input(type="number")
tr
td Keze
td
input(type="number" value="16")
td
input(type="number")
tr
td Kezel
td
input(type="number" value="16")
td
input(type="number")
tr
td Kezel
td
input(type="number" value="16")
td
input(type="number")
tr
td Kezel
td
input(type="number" value="16")
td
input(type="number")
tr
td Kezel
td
input(type="number" value="16")
td
input(type="number")
tr
td Kezel
td
input(type="number" value="16")
td
input(type="number")
tr
td Kezel
td
input(type="number" value="16")
td
input(type="number")
tr
td Kezel
td
input(type="number" value="16")
td
input(type="number")
tr
td Kezel
td
input(type="number" value="16")
td
input(type="number")
2021-01-17 11:48:14 +01:00
input#marksubmit(type="submit" value="Enregistrer")
script(src="/javascripts/marks.js")