https://github.com/vaibhavyadav-dev/django-framework
Covid Vaccination Booking app using Django framework.
https://github.com/vaibhavyadav-dev/django-framework
backend backend-development covid django python python-programming rest-frame
Last synced: 4 months ago
JSON representation
Covid Vaccination Booking app using Django framework.
- Host: GitHub
- URL: https://github.com/vaibhavyadav-dev/django-framework
- Owner: vaibhavyadav-dev
- Created: 2024-07-27T06:06:29.000Z (11 months ago)
- Default Branch: Covid-Vaccination-Booking
- Last Pushed: 2024-08-09T16:41:37.000Z (11 months ago)
- Last Synced: 2025-01-16T10:35:44.226Z (5 months ago)
- Topics: backend, backend-development, covid, django, python, python-programming, rest-frame
- Language: Python
- Homepage:
- Size: 147 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Covid Vaccination Booking
This project is a web application for covid vaccination booking. It is implemented with a basic user interface.
## Type of Users
- User
- Admin### User Use Cases
- Login: Users can log in to their accounts.
- Sign up: New users can create an account.
- Searching for Vaccination center and working hours: Users can search for vaccination centers and view their working hours.
- Apply for a vaccination slot: Users can apply for a vaccination slot. Only 10 candidates are allowed per day.
- Logout: Users can log out of their accounts.### Admin Use Cases
- Login: Admins have a separate login.
- Add Vaccination Centres: Admins can add new vaccination centers.
- Get dosage details: Admins can view dosage details grouped by centers.
- Remove vaccination centers: Admins can remove vaccination centers.### DB schema
### Project Structure
```
.
├── README.md
├── covid_vaccination_booking
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── __init__.cpython-310.pyc
│ │ ├── settings.cpython-310.pyc
│ │ ├── urls.cpython-310.pyc
│ │ └── wsgi.cpython-310.pyc
│ ├── asgi.py
│ ├── settings.py
│ ├── urls.py
│ └── wsgi.py
├── db.sqlite3
├── image.png
├── manage.py
├── requirement.txt
└── vaccination
├── __init__.py
├── __pycache__
│ ├── __init__.cpython-310.pyc
│ ├── admin.cpython-310.pyc
│ ├── apps.cpython-310.pyc
│ ├── models.cpython-310.pyc
│ ├── urls.cpython-310.pyc
│ └── views.cpython-310.pyc
├── admin.py
├── apps.py
├── migrations
│ ├── 0001_initial.py
│ ├── __init__.py
│ └── __pycache__
│ ├── 0001_initial.cpython-310.pyc
│ └── __init__.cpython-310.pyc
├── models.py
├── templates
│ ├── add_center.html
│ ├── admin_dashboard.html
│ ├── base.html
│ ├── dosage_details.html
│ ├── login.html
│ ├── signup.html
│ └── user_dashboard.html
├── tests.py
├── urls.py
└── views.py
```