瀏覽代碼

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)