Closed
Description
We've got a request to add some new questions. These, however, should be anonymous and we should only store the year of admission and the status (resident or extern) with the answers.
The easiest solution would be to use the same mechanism as for the feedback question now (i.e. sending an email). A bit more advanced way is to add a single table (let's say, anonymous_answers
), with a column for the year, the status and each question. A more difficult, but also more flexible approach would be to also create a table for the questions themselves, which could be editable without changing the code.
@kdmnk what do you think?