jiax264 commited on
Commit
1a4bc5e
·
verified ·
1 Parent(s): a013fbc

add student signature line

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -45,9 +45,10 @@ def generate_pdf(df):
45
  "Estimated/Adjusted End Time: ___________________________________________",
46
  "Actual End Time: ______________________________________________________"])
47
  proctor = "Proctor's Signature: _______________________ Date: _______________________"
 
48
 
49
  # construct the body of the pdf
50
- body = "\n\n".join([student_info_and_scheduled_time, notes, actual_time, proctor])
51
 
52
  # add this student's info to the list
53
  page_body_list.append(body)
 
45
  "Estimated/Adjusted End Time: ___________________________________________",
46
  "Actual End Time: ______________________________________________________"])
47
  proctor = "Proctor's Signature: _______________________ Date: _______________________"
48
+ student = "Student Signature: ______________________ Date: _______________________"
49
 
50
  # construct the body of the pdf
51
+ body = "\n\n".join([student_info_and_scheduled_time, notes, actual_time, proctor, student])
52
 
53
  # add this student's info to the list
54
  page_body_list.append(body)