소스 검색

updated date to make it easier

frankvp11 1 년 전
부모
커밋
a673efb97d
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      website/more_documentation/fullcalendar_test.py

+ 2 - 2
website/more_documentation/fullcalendar_test.py

@@ -59,14 +59,14 @@ fullcal.addevent('MATH 1B03 - T06 - Linear Algebra I', '2023-10-18 09:30:00', '2
 
 def add_event():
     global fullcal
-    fullcal.addevent("Math 1b03", "2023-10-19 09:30:00", "2023-10-19 10:20:00")
+    fullcal.addevent("Math 1b03", "2023-11-18 09:30:00", "2023-11-18 10:20:00")
     
     print(fullcal._props)
 
 
 def remove_event():
     global fullcal
-    fullcal.remove_event("Math 1b03", "2023-10-19 09:30:00", "2023-10-19 10:20:00")
+    fullcal.remove_event("Math 1b03", "2023-11-18 09:30:00", "2023-10-19 10:20:00")
 
 ui.button("click me to add event", on_click=add_event)
 ui.button("Clcik me to delete event", on_click=remove_event)