Spaces:
Sleeping
Sleeping
add student signature line
Browse files
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)
|