admin.pug 989 Bytes
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")