├── .gitignore ├── .idea ├── Hostel-Managment-System.iml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── README.md ├── hms ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── manage.py └── selection ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations ├── 0001_initial.py ├── 0002_auto_20180922_0049.py ├── 0003_student_no_dues.py └── __init__.py ├── models.py ├── templates ├── BH5_Floor1.html ├── BH5_Floor2.html ├── BH5_Floor3.html ├── BH5_Floor4.html ├── BH5_Floor5.html ├── BH5_GroundFloor.html ├── add_due.html ├── base.html ├── dues.html ├── edit.html ├── home.html ├── hostels.html ├── login.html ├── profile.html ├── reg_form.html ├── remove_due.html ├── select_room.html └── warden.html ├── tests.py └── views.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverick0004/Hostel-Management-System/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/Hostel-Managment-System.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverick0004/Hostel-Management-System/HEAD/.idea/Hostel-Managment-System.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverick0004/Hostel-Management-System/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverick0004/Hostel-Management-System/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverick0004/Hostel-Management-System/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverick0004/Hostel-Management-System/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Hostel-Managment-System using Python. 2 | -------------------------------------------------------------------------------- /hms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hms/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverick0004/Hostel-Management-System/HEAD/hms/settings.py -------------------------------------------------------------------------------- /hms/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverick0004/Hostel-Management-System/HEAD/hms/urls.py -------------------------------------------------------------------------------- /hms/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverick0004/Hostel-Management-System/HEAD/hms/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverick0004/Hostel-Management-System/HEAD/manage.py -------------------------------------------------------------------------------- /selection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /selection/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverick0004/Hostel-Management-System/HEAD/selection/admin.py -------------------------------------------------------------------------------- /selection/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverick0004/Hostel-Management-System/HEAD/selection/apps.py -------------------------------------------------------------------------------- /selection/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverick0004/Hostel-Management-System/HEAD/selection/forms.py -------------------------------------------------------------------------------- /selection/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverick0004/Hostel-Management-System/HEAD/selection/migrations/0001_initial.py -------------------------------------------------------------------------------- /selection/migrations/0002_auto_20180922_0049.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverick0004/Hostel-Management-System/HEAD/selection/migrations/0002_auto_20180922_0049.py -------------------------------------------------------------------------------- /selection/migrations/0003_student_no_dues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverick0004/Hostel-Management-System/HEAD/selection/migrations/0003_student_no_dues.py -------------------------------------------------------------------------------- /selection/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /selection/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverick0004/Hostel-Management-System/HEAD/selection/models.py -------------------------------------------------------------------------------- /selection/templates/BH5_Floor1.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /selection/templates/BH5_Floor2.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /selection/templates/BH5_Floor3.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /selection/templates/BH5_Floor4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverick0004/Hostel-Management-System/HEAD/selection/templates/BH5_Floor4.html -------------------------------------------------------------------------------- /selection/templates/BH5_Floor5.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /selection/templates/BH5_GroundFloor.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /selection/templates/add_due.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverick0004/Hostel-Management-System/HEAD/selection/templates/add_due.html -------------------------------------------------------------------------------- /selection/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverick0004/Hostel-Management-System/HEAD/selection/templates/base.html -------------------------------------------------------------------------------- /selection/templates/dues.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverick0004/Hostel-Management-System/HEAD/selection/templates/dues.html -------------------------------------------------------------------------------- /selection/templates/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverick0004/Hostel-Management-System/HEAD/selection/templates/edit.html -------------------------------------------------------------------------------- /selection/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverick0004/Hostel-Management-System/HEAD/selection/templates/home.html -------------------------------------------------------------------------------- /selection/templates/hostels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverick0004/Hostel-Management-System/HEAD/selection/templates/hostels.html -------------------------------------------------------------------------------- /selection/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverick0004/Hostel-Management-System/HEAD/selection/templates/login.html -------------------------------------------------------------------------------- /selection/templates/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverick0004/Hostel-Management-System/HEAD/selection/templates/profile.html -------------------------------------------------------------------------------- /selection/templates/reg_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverick0004/Hostel-Management-System/HEAD/selection/templates/reg_form.html -------------------------------------------------------------------------------- /selection/templates/remove_due.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverick0004/Hostel-Management-System/HEAD/selection/templates/remove_due.html -------------------------------------------------------------------------------- /selection/templates/select_room.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverick0004/Hostel-Management-System/HEAD/selection/templates/select_room.html -------------------------------------------------------------------------------- /selection/templates/warden.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverick0004/Hostel-Management-System/HEAD/selection/templates/warden.html -------------------------------------------------------------------------------- /selection/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverick0004/Hostel-Management-System/HEAD/selection/tests.py -------------------------------------------------------------------------------- /selection/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maverick0004/Hostel-Management-System/HEAD/selection/views.py --------------------------------------------------------------------------------