This PR introduces several changes in the database models in order to address #65.
The changes include:
A Django admin interface, where an administrative user can view, modify, and delete other users, hospitals, and hospital properties.
A new Account model to store user information. To ensure that we can distinguish between different users, there are is one singular Account model that stores basic user information and 3 other models that represent the different kinds of users that we have. (As mentioned in #65.)
Migrations to reflect all the previous changes.
Updated Hospital that now contains the option to view and modify all of the hospital's resources.
This PR introduces several changes in the database models in order to address #65.
The changes include:
Account
model to store user information. To ensure that we can distinguish between different users, there are is one singularAccount
model that stores basic user information and 3 other models that represent the different kinds of users that we have. (As mentioned in #65.)Hospital
that now contains the option to view and modify all of the hospital's resources.