├── .github └── workflows │ └── main.yml ├── Hospital_Management_System.py ├── README.md ├── _config.yml ├── db.sqlite3 └── templates ├── addDiagnostics.html ├── addNewDiagostics.html ├── createPatient.html ├── deletePatient.html ├── dropdown.html ├── finalBilling.html ├── home.html ├── issueMedicines.html ├── issueNewMedicines.html ├── login.html ├── searchPatient.html ├── updatePatient.html ├── view.html └── viewPatient.html /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKS-WAR/Hospital-Management-System/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /Hospital_Management_System.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKS-WAR/Hospital-Management-System/HEAD/Hospital_Management_System.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKS-WAR/Hospital-Management-System/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKS-WAR/Hospital-Management-System/HEAD/_config.yml -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKS-WAR/Hospital-Management-System/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /templates/addDiagnostics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKS-WAR/Hospital-Management-System/HEAD/templates/addDiagnostics.html -------------------------------------------------------------------------------- /templates/addNewDiagostics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKS-WAR/Hospital-Management-System/HEAD/templates/addNewDiagostics.html -------------------------------------------------------------------------------- /templates/createPatient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKS-WAR/Hospital-Management-System/HEAD/templates/createPatient.html -------------------------------------------------------------------------------- /templates/deletePatient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKS-WAR/Hospital-Management-System/HEAD/templates/deletePatient.html -------------------------------------------------------------------------------- /templates/dropdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKS-WAR/Hospital-Management-System/HEAD/templates/dropdown.html -------------------------------------------------------------------------------- /templates/finalBilling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKS-WAR/Hospital-Management-System/HEAD/templates/finalBilling.html -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKS-WAR/Hospital-Management-System/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/issueMedicines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKS-WAR/Hospital-Management-System/HEAD/templates/issueMedicines.html -------------------------------------------------------------------------------- /templates/issueNewMedicines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKS-WAR/Hospital-Management-System/HEAD/templates/issueNewMedicines.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKS-WAR/Hospital-Management-System/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/searchPatient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKS-WAR/Hospital-Management-System/HEAD/templates/searchPatient.html -------------------------------------------------------------------------------- /templates/updatePatient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKS-WAR/Hospital-Management-System/HEAD/templates/updatePatient.html -------------------------------------------------------------------------------- /templates/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKS-WAR/Hospital-Management-System/HEAD/templates/view.html -------------------------------------------------------------------------------- /templates/viewPatient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKS-WAR/Hospital-Management-System/HEAD/templates/viewPatient.html --------------------------------------------------------------------------------