zacKolton / COMP4560-deferred-exam-project

GNU General Public License v3.0
0 stars 0 forks source link

Make user settings/inputs editable in UI #15

Closed zacKolton closed 4 months ago

zacKolton commented 6 months ago

From the "Inputs" section of the scheduler, create UI components for those.

zacKolton commented 6 months ago

From @bochacho's scheduler we have:

inCsv = pd.read_excel("../data/InputData.xlsx")

inRooms = {
    "Armes 200": 100,
    "Armes 111": 35,
    "Armes 204": 85,
    "Armes 201": 52,
    "Armes 205": 52,
    "Armes 208": 85,
}

deferralRate = 0.1

examsPerDay = 3
slotNames = {
    0: "Morning",
    1: "Afternoon",
    2: "Evening",
    3: "Night"
}

So there will need to be a way to add a "room" that has a "capacity", edit the deferral rate, edit the # of exams per day, and edit the slots.

zacKolton commented 5 months ago

This may be out of scope now