├── BootstrapTemplate
├── appointment.html
├── css
│ ├── bootstrap.css
│ ├── bootstrap.min.css
│ └── styles.css
├── email.html
├── img
│ ├── header.png
│ ├── patient1.jpg
│ ├── patient2.jpg
│ ├── patient3.jpg
│ ├── service1.jpg
│ ├── service2.jpg
│ ├── service3.jpg
│ ├── service4.jpg
│ ├── team1.jpg
│ ├── team2.jpg
│ ├── team3.jpg
│ └── team4.png
├── index.html
├── js
│ ├── bootstrap.js
│ └── bootstrap.min.js
└── manage-appointments.html
├── README.md
└── django
├── .env
├── db.sqlite3
├── doctor
├── __init__.py
├── __pycache__
│ ├── __init__.cpython-39.pyc
│ ├── admin.cpython-39.pyc
│ ├── apps.cpython-39.pyc
│ ├── context_processors.cpython-39.pyc
│ ├── models.cpython-39.pyc
│ ├── urls.cpython-39.pyc
│ └── views.cpython-39.pyc
├── admin.py
├── apps.py
├── context_processors.py
├── migrations
│ ├── 0001_initial.py
│ ├── 0002_alter_appointment_accepted_date.py
│ ├── __init__.py
│ └── __pycache__
│ │ ├── 0001_initial.cpython-39.pyc
│ │ ├── 0002_alter_appointment_accepted_date.cpython-39.pyc
│ │ └── __init__.cpython-39.pyc
├── models.py
├── tests.py
├── urls.py
└── views.py
├── manage.py
├── project
├── __init__.py
├── __pycache__
│ ├── __init__.cpython-39.pyc
│ ├── settings.cpython-39.pyc
│ ├── urls.cpython-39.pyc
│ └── wsgi.cpython-39.pyc
├── asgi.py
├── settings.py
├── urls.py
└── wsgi.py
├── requirements.txt
├── static
├── css
│ ├── bootstrap.css
│ ├── bootstrap.min.css
│ └── styles.css
├── img
│ ├── header.png
│ ├── patient1.jpg
│ ├── patient2.jpg
│ ├── patient3.jpg
│ ├── service1.jpg
│ ├── service2.jpg
│ ├── service3.jpg
│ ├── service4.jpg
│ ├── team1.jpg
│ ├── team2.jpg
│ ├── team3.jpg
│ └── team4.png
└── js
│ ├── bootstrap.js
│ └── bootstrap.min.js
└── templates
├── appointment.html
├── base.html
├── email.html
├── index.html
└── manage-appointments.html
/BootstrapTemplate/appointment.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/BootstrapTemplate/appointment.html
--------------------------------------------------------------------------------
/BootstrapTemplate/css/bootstrap.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/BootstrapTemplate/css/bootstrap.css
--------------------------------------------------------------------------------
/BootstrapTemplate/css/bootstrap.min.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/BootstrapTemplate/css/bootstrap.min.css
--------------------------------------------------------------------------------
/BootstrapTemplate/css/styles.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/BootstrapTemplate/css/styles.css
--------------------------------------------------------------------------------
/BootstrapTemplate/email.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/BootstrapTemplate/email.html
--------------------------------------------------------------------------------
/BootstrapTemplate/img/header.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/BootstrapTemplate/img/header.png
--------------------------------------------------------------------------------
/BootstrapTemplate/img/patient1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/BootstrapTemplate/img/patient1.jpg
--------------------------------------------------------------------------------
/BootstrapTemplate/img/patient2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/BootstrapTemplate/img/patient2.jpg
--------------------------------------------------------------------------------
/BootstrapTemplate/img/patient3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/BootstrapTemplate/img/patient3.jpg
--------------------------------------------------------------------------------
/BootstrapTemplate/img/service1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/BootstrapTemplate/img/service1.jpg
--------------------------------------------------------------------------------
/BootstrapTemplate/img/service2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/BootstrapTemplate/img/service2.jpg
--------------------------------------------------------------------------------
/BootstrapTemplate/img/service3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/BootstrapTemplate/img/service3.jpg
--------------------------------------------------------------------------------
/BootstrapTemplate/img/service4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/BootstrapTemplate/img/service4.jpg
--------------------------------------------------------------------------------
/BootstrapTemplate/img/team1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/BootstrapTemplate/img/team1.jpg
--------------------------------------------------------------------------------
/BootstrapTemplate/img/team2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/BootstrapTemplate/img/team2.jpg
--------------------------------------------------------------------------------
/BootstrapTemplate/img/team3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/BootstrapTemplate/img/team3.jpg
--------------------------------------------------------------------------------
/BootstrapTemplate/img/team4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/BootstrapTemplate/img/team4.png
--------------------------------------------------------------------------------
/BootstrapTemplate/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/BootstrapTemplate/index.html
--------------------------------------------------------------------------------
/BootstrapTemplate/js/bootstrap.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/BootstrapTemplate/js/bootstrap.js
--------------------------------------------------------------------------------
/BootstrapTemplate/js/bootstrap.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/BootstrapTemplate/js/bootstrap.min.js
--------------------------------------------------------------------------------
/BootstrapTemplate/manage-appointments.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/BootstrapTemplate/manage-appointments.html
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/README.md
--------------------------------------------------------------------------------
/django/.env:
--------------------------------------------------------------------------------
1 | SK=django-insecure-7zi!nx(smfx$z(dx5)^-h@+j7&5d9to0g*=o-)#1e53z*=^l@y
2 |
--------------------------------------------------------------------------------
/django/db.sqlite3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/db.sqlite3
--------------------------------------------------------------------------------
/django/doctor/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/django/doctor/__pycache__/__init__.cpython-39.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/doctor/__pycache__/__init__.cpython-39.pyc
--------------------------------------------------------------------------------
/django/doctor/__pycache__/admin.cpython-39.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/doctor/__pycache__/admin.cpython-39.pyc
--------------------------------------------------------------------------------
/django/doctor/__pycache__/apps.cpython-39.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/doctor/__pycache__/apps.cpython-39.pyc
--------------------------------------------------------------------------------
/django/doctor/__pycache__/context_processors.cpython-39.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/doctor/__pycache__/context_processors.cpython-39.pyc
--------------------------------------------------------------------------------
/django/doctor/__pycache__/models.cpython-39.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/doctor/__pycache__/models.cpython-39.pyc
--------------------------------------------------------------------------------
/django/doctor/__pycache__/urls.cpython-39.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/doctor/__pycache__/urls.cpython-39.pyc
--------------------------------------------------------------------------------
/django/doctor/__pycache__/views.cpython-39.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/doctor/__pycache__/views.cpython-39.pyc
--------------------------------------------------------------------------------
/django/doctor/admin.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/doctor/admin.py
--------------------------------------------------------------------------------
/django/doctor/apps.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/doctor/apps.py
--------------------------------------------------------------------------------
/django/doctor/context_processors.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/doctor/context_processors.py
--------------------------------------------------------------------------------
/django/doctor/migrations/0001_initial.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/doctor/migrations/0001_initial.py
--------------------------------------------------------------------------------
/django/doctor/migrations/0002_alter_appointment_accepted_date.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/doctor/migrations/0002_alter_appointment_accepted_date.py
--------------------------------------------------------------------------------
/django/doctor/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/django/doctor/migrations/__pycache__/0001_initial.cpython-39.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/doctor/migrations/__pycache__/0001_initial.cpython-39.pyc
--------------------------------------------------------------------------------
/django/doctor/migrations/__pycache__/0002_alter_appointment_accepted_date.cpython-39.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/doctor/migrations/__pycache__/0002_alter_appointment_accepted_date.cpython-39.pyc
--------------------------------------------------------------------------------
/django/doctor/migrations/__pycache__/__init__.cpython-39.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/doctor/migrations/__pycache__/__init__.cpython-39.pyc
--------------------------------------------------------------------------------
/django/doctor/models.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/doctor/models.py
--------------------------------------------------------------------------------
/django/doctor/tests.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/doctor/tests.py
--------------------------------------------------------------------------------
/django/doctor/urls.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/doctor/urls.py
--------------------------------------------------------------------------------
/django/doctor/views.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/doctor/views.py
--------------------------------------------------------------------------------
/django/manage.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/manage.py
--------------------------------------------------------------------------------
/django/project/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/django/project/__pycache__/__init__.cpython-39.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/project/__pycache__/__init__.cpython-39.pyc
--------------------------------------------------------------------------------
/django/project/__pycache__/settings.cpython-39.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/project/__pycache__/settings.cpython-39.pyc
--------------------------------------------------------------------------------
/django/project/__pycache__/urls.cpython-39.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/project/__pycache__/urls.cpython-39.pyc
--------------------------------------------------------------------------------
/django/project/__pycache__/wsgi.cpython-39.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/project/__pycache__/wsgi.cpython-39.pyc
--------------------------------------------------------------------------------
/django/project/asgi.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/project/asgi.py
--------------------------------------------------------------------------------
/django/project/settings.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/project/settings.py
--------------------------------------------------------------------------------
/django/project/urls.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/project/urls.py
--------------------------------------------------------------------------------
/django/project/wsgi.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/project/wsgi.py
--------------------------------------------------------------------------------
/django/requirements.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/requirements.txt
--------------------------------------------------------------------------------
/django/static/css/bootstrap.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/static/css/bootstrap.css
--------------------------------------------------------------------------------
/django/static/css/bootstrap.min.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/static/css/bootstrap.min.css
--------------------------------------------------------------------------------
/django/static/css/styles.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/static/css/styles.css
--------------------------------------------------------------------------------
/django/static/img/header.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/static/img/header.png
--------------------------------------------------------------------------------
/django/static/img/patient1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/static/img/patient1.jpg
--------------------------------------------------------------------------------
/django/static/img/patient2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/static/img/patient2.jpg
--------------------------------------------------------------------------------
/django/static/img/patient3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/static/img/patient3.jpg
--------------------------------------------------------------------------------
/django/static/img/service1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/static/img/service1.jpg
--------------------------------------------------------------------------------
/django/static/img/service2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/static/img/service2.jpg
--------------------------------------------------------------------------------
/django/static/img/service3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/static/img/service3.jpg
--------------------------------------------------------------------------------
/django/static/img/service4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/static/img/service4.jpg
--------------------------------------------------------------------------------
/django/static/img/team1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/static/img/team1.jpg
--------------------------------------------------------------------------------
/django/static/img/team2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/static/img/team2.jpg
--------------------------------------------------------------------------------
/django/static/img/team3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/static/img/team3.jpg
--------------------------------------------------------------------------------
/django/static/img/team4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/static/img/team4.png
--------------------------------------------------------------------------------
/django/static/js/bootstrap.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/static/js/bootstrap.js
--------------------------------------------------------------------------------
/django/static/js/bootstrap.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/static/js/bootstrap.min.js
--------------------------------------------------------------------------------
/django/templates/appointment.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/templates/appointment.html
--------------------------------------------------------------------------------
/django/templates/base.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/templates/base.html
--------------------------------------------------------------------------------
/django/templates/email.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/templates/email.html
--------------------------------------------------------------------------------
/django/templates/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/templates/index.html
--------------------------------------------------------------------------------
/django/templates/manage-appointments.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SelmiAbderrahim/Django-Doctor-Website/HEAD/django/templates/manage-appointments.html
--------------------------------------------------------------------------------