├── core ├── __init__.py ├── migrations │ ├── __init__.py │ ├── 0002_remove_notification_title.py │ ├── 0003_notification_read.py │ └── 0004_auto_20180331_1214.py ├── apps.py ├── admin.py ├── tests.py ├── decorators.py ├── forms.py └── urls.py ├── mysite ├── __init__.py ├── views.py ├── wsgi.py └── urls.py ├── staticfiles ├── js │ ├── book_app_calendal.js │ ├── test_filter.js │ ├── init.js │ └── upcoming_appointment.js ├── img │ ├── bg2.png │ ├── bg3.jpg │ ├── logo.png │ ├── background1.jpg │ ├── background2.jpg │ └── background3.jpg ├── fonts │ └── roboto │ │ ├── Roboto-Bold.woff │ │ ├── Roboto-Thin.woff │ │ ├── Roboto-Bold.woff2 │ │ ├── Roboto-Light.woff │ │ ├── Roboto-Light.woff2 │ │ ├── Roboto-Medium.woff │ │ ├── Roboto-Medium.woff2 │ │ ├── Roboto-Regular.woff │ │ ├── Roboto-Thin.woff2 │ │ └── Roboto-Regular.woff2 └── fullcalendar │ ├── demos │ ├── php │ │ ├── get-timezones.php │ │ └── get-events.php │ ├── json │ │ └── events.json │ ├── gcal.html │ ├── json.html │ ├── default.html │ ├── basic-views.html │ ├── agenda-views.html │ ├── background-events.html │ ├── week-numbers.html │ ├── list-views.html │ └── selectable.html │ ├── LICENSE.txt │ ├── fullcalendar.print.min.css │ └── locale │ ├── en-ca.js │ ├── en-ie.js │ ├── ja.js │ ├── ar-kw.js │ ├── ar-ma.js │ ├── ar-tn.js │ ├── ko.js │ ├── en-au.js │ ├── en-gb.js │ ├── en-nz.js │ ├── ar-dz.js │ ├── da.js │ ├── nn.js │ ├── nb.js │ ├── sv.js │ ├── zh-tw.js │ ├── sq.js │ ├── zh-cn.js │ ├── ro.js │ ├── pt.js │ ├── af.js │ ├── it.js │ ├── th.js │ ├── id.js │ ├── pt-br.js │ ├── fr-ca.js │ ├── ms.js │ ├── fr-ch.js │ ├── ms-my.js │ ├── eu.js │ ├── fr.js │ ├── mk.js │ ├── kk.js │ ├── bg.js │ ├── tr.js │ ├── de.js │ ├── de-ch.js │ ├── gl.js │ ├── de-at.js │ ├── he.js │ ├── ar-sa.js │ ├── et.js │ ├── vi.js │ ├── fa.js │ ├── es-us.js │ ├── hi.js │ ├── ka.js │ ├── ca.js │ ├── lb.js │ └── is.js ├── templates ├── registration │ ├── password_reset_form.html │ ├── password_reset_confirm.html │ ├── password_reset_subject.txt │ ├── password_reset_complete.html │ ├── logged_out.html │ ├── password_reset_done.html │ ├── password_reset_email.html │ └── login.html ├── form_field_snippet.html ├── form_snippet.html ├── upcoming_appointment.html ├── calendar.html ├── testUI.html ├── doctor_leave.html ├── signup │ ├── signup_hospital.html │ ├── signup_patient.html │ └── signup_doctor.html ├── doctor_leave_after.html ├── legal.html ├── notifications.html ├── book_appointment_map.html └── FAQ.html ├── .gitignore ├── requirements.txt ├── manage.py └── README.md /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysite/views.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /staticfiles/js/book_app_calendal.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /staticfiles/js/test_filter.js: -------------------------------------------------------------------------------- 1 | console.log('inside filter'); 2 | -------------------------------------------------------------------------------- /templates/registration/password_reset_form.html: -------------------------------------------------------------------------------- 1 | password reset form -------------------------------------------------------------------------------- /templates/registration/password_reset_confirm.html: -------------------------------------------------------------------------------- 1 | password reset confirm -------------------------------------------------------------------------------- /templates/registration/password_reset_subject.txt: -------------------------------------------------------------------------------- 1 | password reset subject -------------------------------------------------------------------------------- /templates/registration/password_reset_complete.html: -------------------------------------------------------------------------------- 1 | password reset complete -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *~ 3 | __ pycache __ 4 | db.sqlite3 5 | /static 6 | .DS_Store 7 | .idea/ 8 | -------------------------------------------------------------------------------- /staticfiles/img/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apaar97/upchaar-web/HEAD/staticfiles/img/bg2.png -------------------------------------------------------------------------------- /staticfiles/img/bg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apaar97/upchaar-web/HEAD/staticfiles/img/bg3.jpg -------------------------------------------------------------------------------- /staticfiles/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apaar97/upchaar-web/HEAD/staticfiles/img/logo.png -------------------------------------------------------------------------------- /core/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class CoreConfig(AppConfig): 5 | name = 'core' 6 | -------------------------------------------------------------------------------- /staticfiles/img/background1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apaar97/upchaar-web/HEAD/staticfiles/img/background1.jpg -------------------------------------------------------------------------------- /staticfiles/img/background2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apaar97/upchaar-web/HEAD/staticfiles/img/background2.jpg -------------------------------------------------------------------------------- /staticfiles/img/background3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apaar97/upchaar-web/HEAD/staticfiles/img/background3.jpg -------------------------------------------------------------------------------- /staticfiles/fonts/roboto/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apaar97/upchaar-web/HEAD/staticfiles/fonts/roboto/Roboto-Bold.woff -------------------------------------------------------------------------------- /staticfiles/fonts/roboto/Roboto-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apaar97/upchaar-web/HEAD/staticfiles/fonts/roboto/Roboto-Thin.woff -------------------------------------------------------------------------------- /staticfiles/fonts/roboto/Roboto-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apaar97/upchaar-web/HEAD/staticfiles/fonts/roboto/Roboto-Bold.woff2 -------------------------------------------------------------------------------- /staticfiles/fonts/roboto/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apaar97/upchaar-web/HEAD/staticfiles/fonts/roboto/Roboto-Light.woff -------------------------------------------------------------------------------- /staticfiles/fonts/roboto/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apaar97/upchaar-web/HEAD/staticfiles/fonts/roboto/Roboto-Light.woff2 -------------------------------------------------------------------------------- /staticfiles/fonts/roboto/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apaar97/upchaar-web/HEAD/staticfiles/fonts/roboto/Roboto-Medium.woff -------------------------------------------------------------------------------- /staticfiles/fonts/roboto/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apaar97/upchaar-web/HEAD/staticfiles/fonts/roboto/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /staticfiles/fonts/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apaar97/upchaar-web/HEAD/staticfiles/fonts/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /staticfiles/fonts/roboto/Roboto-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apaar97/upchaar-web/HEAD/staticfiles/fonts/roboto/Roboto-Thin.woff2 -------------------------------------------------------------------------------- /staticfiles/fonts/roboto/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apaar97/upchaar-web/HEAD/staticfiles/fonts/roboto/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /templates/form_field_snippet.html: -------------------------------------------------------------------------------- 1 | {{ field.label_tag }} 2 | {{ field }} 3 | {% if field.errors %} 4 | {{ field.errors }} 5 | {% endif %} 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /templates/registration/logged_out.html: -------------------------------------------------------------------------------- 1 | {% extends 'base.html' %} 2 | 3 | {% block main %} 4 | 5 |
18 | In no event shall , nor any of its officers, directors and employees, shall be held liable for 19 | anything arising out of or in any way connected with your use of this Website whether such liability 20 | is under contract, including its officers, directors and employees shall not be held liable for any 21 | indirect, consequential or special liability arising out of or in any way related to your use of 22 | this Website. 23 |
24 | 25 |php/get-events.php must be running.
78 |
13 |
14 |
15 |