admin.pug
1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
extends layout
block content
h1= title
p= lectures
button(type="button" class="btn btn-primary" onclick="checkAttendance()") 출석 확인
<br/>
<br/>
div(class="container-fluid-1")
table(id="student-table" class="table")
thead(class="thead-dark")
tr(class="col")
th(scope="col") 학번
th(scope="col") 학생 이름
th(scope="col") 출석 시간
th(scope="col") 출석 상태
tbody(id="attendanceTbody")
<br/>
<br/>
button(type="button" class="btn btn-primary" onclick="checkRequest()") 수동 요청 확인
<br/>
<br/>
div(class="container-fluid-2")
table(id="student-request-table" class="table")
thead(class="thead-dark")
tr(class="col")
th(scope="col") 학번
th(scope="col") 학생 이름
th(scope="col") 요청 시간
th(scope="col") 출석 상태
th(scope="col") 출석 처리
tbody(id="requestTbody")
<br/>
<br/>
button(type="button" class="btn btn-primary" onclick="checkUndefinedImage()") 미인증 사진 확인
<br/>
<br/>
div(class="container-fluid-3")
table(id="student-image-table" class="table")
thead(class="thead-dark")
tr(class="col")
th(scope="col") 사진
th(scope="col") 등록 시간
tbody(id="imageTbody")