knub / onehundredandtwenty

Course Planning System for HPI masters
15 stars 19 forks source link

Take courses twice #9

Closed dahoo closed 10 years ago

dahoo commented 10 years ago

You can take some courses (like the HCI project seminar) more than once. Would be cool if the planner took that into account!

knub commented 10 years ago

Won't implement, because it breaks the logic for everything else.

Solution: Add the course twice in js/data.js, something like

hciSeminar2013: {
    kurz: 'HCI Project<br />2013',
    /* .. and so on .. */
},
hciSeminar2014: {
    kurz: 'HCI Project<br />2014',
    /* ... */
}

This way, it is just handled as two different courses. I think there is no need to keep the notion of "this course was done twice, but under slightly different names" in the planner, as it does not effect the planning.

knub commented 10 years ago

Closing this, as there was no response.