nghugo / intro-prog

Introductory Programming Project Group 1
0 stars 0 forks source link

Admin functionality: Create new humanitarian plans with required details #4

Closed nghugo closed 8 months ago

nghugo commented 8 months ago

Write functions for adding and editing humanitarian plan, ie event (with persistence storage -> HIGHLY recommend storing in CSV/ JSON/ a format compatible with pandas) ○ Description ○ Geographical region (do not accept made up countries, so you should load and compare a predefined set of countries) ○ Start date (use datetime module, see https://docs.python.org/3/library/datetime.html) ○ End date (use datetime module, see https://docs.python.org/3/library/datetime.html) ○ Unique camp identification (Need to be able to specify value, but check uniqueness against existing volunteering plans. Do NOT just implement as uuid as you do not have control over the value)

Question: Can a plan contain multiple camps??

To do: