admin.pug 1.34 KB
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")