├── .flake8 ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE │ └── pull_request_template.md └── workflows │ └── tests.yml ├── .gitignore ├── .isort.cfg ├── .pre-commit-config.yaml ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── backend.prod.env.example ├── backend ├── Dockerfile ├── __init__.py ├── apps │ ├── __init__.py │ ├── accounts │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── db_stats.py │ │ ├── decorator.py │ │ ├── email_utils.py │ │ ├── forms.py │ │ ├── generate_users.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_user_email_validation_date.py │ │ │ ├── 0004_custom_migration_timestamps.py │ │ │ ├── 0005_auto_20200410_2113.py │ │ │ ├── 0006_auto_20200501_2346.py │ │ │ ├── 0007_auto_20200502_1109.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tables.py │ │ ├── templates │ │ │ ├── approve_hospitals.html │ │ │ ├── change_activation_ask.html │ │ │ ├── database_stats.html │ │ │ ├── deleted_user.html │ │ │ ├── deleted_user_ask.html │ │ │ ├── hospital_edit.html │ │ │ ├── hospital_signup.html │ │ │ ├── newsletter_edit.html │ │ │ ├── newsletter_list.html │ │ │ ├── registration │ │ │ │ ├── login.html │ │ │ │ ├── logout.html │ │ │ │ ├── password_change_done_.html │ │ │ │ ├── password_change_form_.html │ │ │ │ ├── password_reset_complete_.html │ │ │ │ ├── password_reset_confirm_.html │ │ │ │ ├── password_reset_done_.html │ │ │ │ ├── password_reset_email_.html │ │ │ │ ├── password_reset_email_subject.txt │ │ │ │ ├── password_reset_form_.html │ │ │ │ ├── password_set_email_.html │ │ │ │ └── password_set_email_hospital.html │ │ │ ├── staff_profile.html │ │ │ ├── student_edit.html │ │ │ └── student_signup.html │ │ ├── urls.py │ │ ├── utils.py │ │ ├── views.py │ │ └── views_staff.py │ ├── checks.py │ ├── iamstudent │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── custom_crispy.py │ │ ├── filters.py │ │ ├── forms.py │ │ ├── forms_filter.py │ │ ├── management │ │ │ └── commands │ │ │ │ ├── _utils.py │ │ │ │ └── createfakeusers.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20200329_1618.py │ │ │ ├── 0003_auto_20200329_1859.py │ │ │ ├── 0003_auto_20200330_0020.py │ │ │ ├── 0003_auto_20200330_0101.py │ │ │ ├── 0004_merge_20200330_0124.py │ │ │ ├── 0004_merge_20200330_0152.py │ │ │ ├── 0005_merge_20200330_0221.py │ │ │ ├── 0005_student_einwilligung_agb.py │ │ │ ├── 0006_merge_20200330_0313.py │ │ │ ├── 0007_auto_20200402_1746.py │ │ │ ├── 0007_auto_20200402_2055.py │ │ │ ├── 0008_auto_20200402_2211.py │ │ │ ├── 0009_merge_20200402_2309.py │ │ │ ├── 0010_auto_20200405_2217.py │ │ │ ├── 0010_custom_migration.py │ │ │ ├── 0011_merge_20200404_2309.py │ │ │ ├── 0012_merge_20200406_0203.py │ │ │ ├── 0013_emailtosend_send_date.py │ │ │ ├── 0014_emailtohospital_send_date.py │ │ │ ├── 0015_auto_20200409_1620.py │ │ │ ├── 0015_custom_migration_timestamps.py │ │ │ ├── 0016_auto_20200409_1920.py │ │ │ ├── 0017_auto_20200502_2032.py │ │ │ ├── 0018_auto_20200522_1339.py │ │ │ ├── 0019_auto_20200613_1655.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── models_persistent_filter.py │ │ ├── tables.py │ │ ├── templates │ │ │ ├── ampel.html │ │ │ ├── checkbox_studenttable.html │ │ │ ├── emails_sent.html │ │ │ ├── input_buttongroup-any_indicator.html │ │ │ ├── input_buttongroup-egalmuss_indicator.html │ │ │ ├── input_buttongroup-progress_indicator.html │ │ │ ├── input_buttongroup-traffic_light.html │ │ │ ├── layout_radio_ample.html │ │ │ ├── mail.html │ │ │ ├── send_mail_hospital.html │ │ │ ├── student_list_view.html │ │ │ ├── thanks.html │ │ │ └── view_student.html │ │ ├── urls.py │ │ ├── views.py │ │ └── widgets.py │ ├── ineedstudent │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── converters.py │ │ ├── filters.py │ │ ├── forms.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20200330_0101.py │ │ │ ├── 0002_hospital_max_mails_per_day.py │ │ │ ├── 0003_merge_20200330_0124.py │ │ │ ├── 0004_auto_20200409_1513.py │ │ │ ├── 0005_auto_20200409_1620.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tables.py │ │ ├── templates │ │ │ ├── approval_button.html │ │ │ ├── change_posting.html │ │ │ ├── delete_button.html │ │ │ ├── hospital_contacted.html │ │ │ ├── hospital_dashboard.html │ │ │ ├── hospital_view.html │ │ │ ├── info_button.html │ │ │ ├── list_hospitals_by_plz.html │ │ │ ├── map_hospitals.html │ │ │ ├── modal_button.html │ │ │ ├── student_info_button.html │ │ │ └── thanks_hospital.html │ │ ├── urls.py │ │ └── views.py │ ├── mapview │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── files │ │ │ ├── AT.csv │ │ │ ├── DE.csv │ │ │ └── plzs_merged.json │ │ ├── make_plz_json_script.py │ │ ├── templates │ │ │ └── mapview │ │ │ │ └── map.html │ │ ├── urls.py │ │ ├── utils.py │ │ └── views.py │ ├── test_all_url_endpoints.py │ └── use_statistics │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── migrations │ │ └── __init__.py │ │ ├── templates │ │ └── view.html │ │ ├── urls.py │ │ └── views.py ├── backups │ └── .gitignore ├── fixture_so_many_users.json ├── gunicorn.conf.py ├── locale │ └── en │ │ └── LC_MESSAGES │ │ └── django.po ├── manage.py ├── match4healthcare │ ├── __init__.py │ ├── asgi.py │ ├── constants │ │ ├── __init__.py │ │ └── enum.py │ ├── logging │ │ ├── __init__.py │ │ ├── formatters.py │ │ └── loggers.py │ ├── settings │ │ ├── common.py │ │ ├── development.py │ │ └── production.py │ ├── urls.py │ ├── views.py │ └── wsgi.py ├── requirements.prod.txt ├── requirements.txt ├── run │ ├── .gitignore │ ├── media │ │ └── .gitkeep │ └── static │ │ └── .gitkeep ├── static │ ├── css │ │ ├── bootstrap_4.4.1 │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ ├── form.css │ │ ├── general.css │ │ └── map.css │ ├── email │ │ ├── instagram.png │ │ ├── match4healthcare-logo.png │ │ ├── spacer.gif │ │ ├── twitter.png │ │ └── youtube.png │ ├── img │ │ ├── BAEK.png │ │ ├── Budndnisjunger.jpg │ │ ├── Budndnisjunger.png │ │ ├── GitHub-Mark-Light-32px.png │ │ ├── Hashtag-Gesundheit.png │ │ ├── KBV-logo.png │ │ ├── LHR.png │ │ ├── aerzteblatt_logo.svg │ │ ├── ahmed_abdel_rahman_gray.jpg │ │ ├── alexandra_diendorfer_gray.jpg │ │ ├── amandeep_grewal_gray.jpg │ │ ├── andi2.jpeg │ │ ├── andreas_zehetner_gray.jpg │ │ ├── apobank.svg │ │ ├── aurica_ritter_gray.jpg │ │ ├── baschdl2.jpeg │ │ ├── bg-grey.jpg │ │ ├── bg-login.jpg │ │ ├── bissfest.png │ │ ├── bjarne2.jpg │ │ ├── bmg.png │ │ ├── bvmd.jpeg │ │ ├── fabian_von_bubnoff_gray.jpg │ │ ├── facebook-share.jpg │ │ ├── facebook.svg │ │ ├── favicon │ │ │ ├── android-icon-144x144.png │ │ │ ├── android-icon-192x192.png │ │ │ ├── android-icon-36x36.png │ │ │ ├── android-icon-48x48.png │ │ │ ├── android-icon-72x72.png │ │ │ ├── android-icon-96x96.png │ │ │ ├── apple-icon-114x114.png │ │ │ ├── apple-icon-120x120.png │ │ │ ├── apple-icon-144x144.png │ │ │ ├── apple-icon-152x152.png │ │ │ ├── apple-icon-180x180.png │ │ │ ├── apple-icon-57x57.png │ │ │ ├── apple-icon-60x60.png │ │ │ ├── apple-icon-72x72.png │ │ │ ├── apple-icon-76x76.png │ │ │ ├── apple-icon-precomposed.png │ │ │ ├── apple-icon.png │ │ │ ├── browserconfig.xml │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon-96x96.png │ │ │ ├── favicon.ico │ │ │ ├── manifest.json │ │ │ ├── ms-icon-144x144.png │ │ │ ├── ms-icon-150x150.png │ │ │ ├── ms-icon-310x310.png │ │ │ └── ms-icon-70x70.png │ │ ├── freya.jpg │ │ ├── freya2.jpg │ │ ├── hackaton.jpg │ │ ├── instagram.png │ │ ├── instagram.svg │ │ ├── jana_aulenkamp_gray.jpg │ │ ├── jeremy_schmidt_gray.jpg │ │ ├── login-bg.jpg │ │ ├── logo-bvmd.svg │ │ ├── logo-mb.png │ │ ├── logo.jpg │ │ ├── malte_zacharias_gray.jpg │ │ ├── map │ │ │ ├── facility-marker-inkscape.svg │ │ │ ├── facility-marker.svg │ │ │ ├── hospital-buildings.svg │ │ │ └── supporter-marker.svg │ │ ├── match4healthcare-logo-text.svg │ │ ├── match4healthcare-logo.svg │ │ ├── max_joos_gray.jpg │ │ ├── medis-vs-covid19-logo.svg │ │ ├── michael_neulinger_gray.jpg │ │ ├── mobile-bg-blank.jpg │ │ ├── mobile-bg.jpg │ │ ├── nicolaj_hackert_gray.jpg │ │ ├── oeh-graz.svg │ │ ├── oeh-ibk.svg │ │ ├── oeh-klu.png │ │ ├── oeh-linz.svg │ │ ├── oeh-sfu.png │ │ ├── oeh-wien.svg │ │ ├── perseus.png │ │ ├── screenshot1.jpg │ │ ├── screenshot2.jpg │ │ ├── screenshot3.jpg │ │ ├── spacer.gif │ │ ├── team │ │ │ ├── ahmed.jpg │ │ │ ├── alexandra_diendorfer.jpg │ │ │ ├── amandeep_grewal.jpg │ │ │ ├── andi_gray.jpeg │ │ │ ├── andreas_kind.jpg │ │ │ ├── andreas_zehetner.jpg │ │ │ ├── aurica_ritter.jpg │ │ │ ├── baschdl_gray.jpeg │ │ │ ├── bjarne_sievers.jpg │ │ │ ├── bvmd.jpg │ │ │ ├── fabian_von_bubnoff.jpg │ │ │ ├── freya_behrens.jpg │ │ │ ├── freya_gray.jpg │ │ │ ├── jan_ruettinger.jpg │ │ │ ├── jana_aulenkamp.jpg │ │ │ ├── jeremy_schmidt.jpg │ │ │ ├── jonathan_sauder.png │ │ │ ├── kevin_yuan.png │ │ │ ├── koray_guel.jpg │ │ │ ├── leonard_balzer.jpg │ │ │ ├── logo-medis-vs-covid.jpg │ │ │ ├── logo-medis-vs-covid.svg │ │ │ ├── malte_zacharias.jpg │ │ │ ├── max_joos.jpg │ │ │ ├── michael_neulinger.jpg │ │ │ ├── nicolaj_hackert.jpg │ │ │ ├── sebastian_bischoff.jpg │ │ │ └── svilen_stefanov.jpg │ │ ├── thieme.png │ │ ├── title.jpg │ │ ├── twitter.png │ │ ├── twitter.svg │ │ ├── wie-funktionierts-home-de.png │ │ ├── wie-funktionierts-home-en.png │ │ ├── wir-vs-virus.svg │ │ ├── youtube.png │ │ └── youtube.svg │ └── js │ │ ├── Leaflet.FeatureGroup.SubGroup-1.0.2 │ │ └── leaflet.featuregroup.subgroup.js │ │ ├── PostingForm.js │ │ ├── bootstrap_4.4.1 │ │ ├── bootstrap.bundle.min.js │ │ └── bootstrap.bundle.min.js.map │ │ ├── jquery-3.4.1.min.js │ │ ├── leaflet-1.6.0 │ │ ├── images │ │ │ ├── layers-2x.png │ │ │ ├── layers.png │ │ │ ├── marker-icon-2x.png │ │ │ ├── marker-icon.png │ │ │ └── marker-shadow.png │ │ ├── leaflet.css │ │ ├── leaflet.js │ │ └── leaflet.js.map │ │ ├── leaflet.markercluster-1.4.1 │ │ ├── MarkerCluster.Default.css │ │ ├── MarkerCluster.css │ │ ├── leaflet.markercluster.js │ │ └── leaflet.markercluster.js.map │ │ ├── mapview.js │ │ └── util.js └── templates │ ├── 404.html │ ├── 500.html │ ├── about.html │ ├── base.html │ ├── dataprotection.html │ ├── home.html │ ├── impressum.html │ ├── legal-questions.html │ └── terms-of-use.html ├── backup.sh ├── database.prod.env.example ├── database ├── .gitignore ├── Dockerfile ├── init-db.sh └── postgresql.conf ├── deploy.sh ├── docker-compose.dev.yml ├── docker-compose.prod.yml ├── scripts ├── check_website_availability.sh ├── wait_for_backend.sh └── write_envs_to_file.sh └── tools ├── nginx-sample-site └── static-error-page ├── 504.html └── error-page-resources ├── bg.jpg ├── match4healthcare-logo-text.svg └── match4healthcare-logo.svg /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/.isort.cfg -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/README.md -------------------------------------------------------------------------------- /backend.prod.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend.prod.env.example -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/apps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/__init__.py -------------------------------------------------------------------------------- /backend/apps/accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/apps/accounts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/admin.py -------------------------------------------------------------------------------- /backend/apps/accounts/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/apps.py -------------------------------------------------------------------------------- /backend/apps/accounts/db_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/db_stats.py -------------------------------------------------------------------------------- /backend/apps/accounts/decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/decorator.py -------------------------------------------------------------------------------- /backend/apps/accounts/email_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/email_utils.py -------------------------------------------------------------------------------- /backend/apps/accounts/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/forms.py -------------------------------------------------------------------------------- /backend/apps/accounts/generate_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/generate_users.py -------------------------------------------------------------------------------- /backend/apps/accounts/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/apps/accounts/migrations/0002_user_email_validation_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/migrations/0002_user_email_validation_date.py -------------------------------------------------------------------------------- /backend/apps/accounts/migrations/0004_custom_migration_timestamps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/migrations/0004_custom_migration_timestamps.py -------------------------------------------------------------------------------- /backend/apps/accounts/migrations/0005_auto_20200410_2113.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/migrations/0005_auto_20200410_2113.py -------------------------------------------------------------------------------- /backend/apps/accounts/migrations/0006_auto_20200501_2346.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/migrations/0006_auto_20200501_2346.py -------------------------------------------------------------------------------- /backend/apps/accounts/migrations/0007_auto_20200502_1109.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/migrations/0007_auto_20200502_1109.py -------------------------------------------------------------------------------- /backend/apps/accounts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/apps/accounts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/models.py -------------------------------------------------------------------------------- /backend/apps/accounts/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/tables.py -------------------------------------------------------------------------------- /backend/apps/accounts/templates/approve_hospitals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/templates/approve_hospitals.html -------------------------------------------------------------------------------- /backend/apps/accounts/templates/change_activation_ask.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/templates/change_activation_ask.html -------------------------------------------------------------------------------- /backend/apps/accounts/templates/database_stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/templates/database_stats.html -------------------------------------------------------------------------------- /backend/apps/accounts/templates/deleted_user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/templates/deleted_user.html -------------------------------------------------------------------------------- /backend/apps/accounts/templates/deleted_user_ask.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/templates/deleted_user_ask.html -------------------------------------------------------------------------------- /backend/apps/accounts/templates/hospital_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/templates/hospital_edit.html -------------------------------------------------------------------------------- /backend/apps/accounts/templates/hospital_signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/templates/hospital_signup.html -------------------------------------------------------------------------------- /backend/apps/accounts/templates/newsletter_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/templates/newsletter_edit.html -------------------------------------------------------------------------------- /backend/apps/accounts/templates/newsletter_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/templates/newsletter_list.html -------------------------------------------------------------------------------- /backend/apps/accounts/templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/templates/registration/login.html -------------------------------------------------------------------------------- /backend/apps/accounts/templates/registration/logout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/templates/registration/logout.html -------------------------------------------------------------------------------- /backend/apps/accounts/templates/registration/password_change_done_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/templates/registration/password_change_done_.html -------------------------------------------------------------------------------- /backend/apps/accounts/templates/registration/password_change_form_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/templates/registration/password_change_form_.html -------------------------------------------------------------------------------- /backend/apps/accounts/templates/registration/password_reset_complete_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/templates/registration/password_reset_complete_.html -------------------------------------------------------------------------------- /backend/apps/accounts/templates/registration/password_reset_confirm_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/templates/registration/password_reset_confirm_.html -------------------------------------------------------------------------------- /backend/apps/accounts/templates/registration/password_reset_done_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/templates/registration/password_reset_done_.html -------------------------------------------------------------------------------- /backend/apps/accounts/templates/registration/password_reset_email_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/templates/registration/password_reset_email_.html -------------------------------------------------------------------------------- /backend/apps/accounts/templates/registration/password_reset_email_subject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/templates/registration/password_reset_email_subject.txt -------------------------------------------------------------------------------- /backend/apps/accounts/templates/registration/password_reset_form_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/templates/registration/password_reset_form_.html -------------------------------------------------------------------------------- /backend/apps/accounts/templates/registration/password_set_email_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/templates/registration/password_set_email_.html -------------------------------------------------------------------------------- /backend/apps/accounts/templates/registration/password_set_email_hospital.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/templates/registration/password_set_email_hospital.html -------------------------------------------------------------------------------- /backend/apps/accounts/templates/staff_profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/templates/staff_profile.html -------------------------------------------------------------------------------- /backend/apps/accounts/templates/student_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/templates/student_edit.html -------------------------------------------------------------------------------- /backend/apps/accounts/templates/student_signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/templates/student_signup.html -------------------------------------------------------------------------------- /backend/apps/accounts/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/urls.py -------------------------------------------------------------------------------- /backend/apps/accounts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/utils.py -------------------------------------------------------------------------------- /backend/apps/accounts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/views.py -------------------------------------------------------------------------------- /backend/apps/accounts/views_staff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/accounts/views_staff.py -------------------------------------------------------------------------------- /backend/apps/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/checks.py -------------------------------------------------------------------------------- /backend/apps/iamstudent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/apps/iamstudent/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/apps.py -------------------------------------------------------------------------------- /backend/apps/iamstudent/custom_crispy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/custom_crispy.py -------------------------------------------------------------------------------- /backend/apps/iamstudent/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/filters.py -------------------------------------------------------------------------------- /backend/apps/iamstudent/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/forms.py -------------------------------------------------------------------------------- /backend/apps/iamstudent/forms_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/forms_filter.py -------------------------------------------------------------------------------- /backend/apps/iamstudent/management/commands/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/management/commands/_utils.py -------------------------------------------------------------------------------- /backend/apps/iamstudent/management/commands/createfakeusers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/management/commands/createfakeusers.py -------------------------------------------------------------------------------- /backend/apps/iamstudent/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/apps/iamstudent/migrations/0002_auto_20200329_1618.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/migrations/0002_auto_20200329_1618.py -------------------------------------------------------------------------------- /backend/apps/iamstudent/migrations/0003_auto_20200329_1859.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/migrations/0003_auto_20200329_1859.py -------------------------------------------------------------------------------- /backend/apps/iamstudent/migrations/0003_auto_20200330_0020.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/migrations/0003_auto_20200330_0020.py -------------------------------------------------------------------------------- /backend/apps/iamstudent/migrations/0003_auto_20200330_0101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/migrations/0003_auto_20200330_0101.py -------------------------------------------------------------------------------- /backend/apps/iamstudent/migrations/0004_merge_20200330_0124.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/migrations/0004_merge_20200330_0124.py -------------------------------------------------------------------------------- /backend/apps/iamstudent/migrations/0004_merge_20200330_0152.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/migrations/0004_merge_20200330_0152.py -------------------------------------------------------------------------------- /backend/apps/iamstudent/migrations/0005_merge_20200330_0221.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/migrations/0005_merge_20200330_0221.py -------------------------------------------------------------------------------- /backend/apps/iamstudent/migrations/0005_student_einwilligung_agb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/migrations/0005_student_einwilligung_agb.py -------------------------------------------------------------------------------- /backend/apps/iamstudent/migrations/0006_merge_20200330_0313.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/migrations/0006_merge_20200330_0313.py -------------------------------------------------------------------------------- /backend/apps/iamstudent/migrations/0007_auto_20200402_1746.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/migrations/0007_auto_20200402_1746.py -------------------------------------------------------------------------------- /backend/apps/iamstudent/migrations/0007_auto_20200402_2055.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/migrations/0007_auto_20200402_2055.py -------------------------------------------------------------------------------- /backend/apps/iamstudent/migrations/0008_auto_20200402_2211.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/migrations/0008_auto_20200402_2211.py -------------------------------------------------------------------------------- /backend/apps/iamstudent/migrations/0009_merge_20200402_2309.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/migrations/0009_merge_20200402_2309.py -------------------------------------------------------------------------------- /backend/apps/iamstudent/migrations/0010_auto_20200405_2217.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/migrations/0010_auto_20200405_2217.py -------------------------------------------------------------------------------- /backend/apps/iamstudent/migrations/0010_custom_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/migrations/0010_custom_migration.py -------------------------------------------------------------------------------- /backend/apps/iamstudent/migrations/0011_merge_20200404_2309.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/migrations/0011_merge_20200404_2309.py -------------------------------------------------------------------------------- /backend/apps/iamstudent/migrations/0012_merge_20200406_0203.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/migrations/0012_merge_20200406_0203.py -------------------------------------------------------------------------------- /backend/apps/iamstudent/migrations/0013_emailtosend_send_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/migrations/0013_emailtosend_send_date.py -------------------------------------------------------------------------------- /backend/apps/iamstudent/migrations/0014_emailtohospital_send_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/migrations/0014_emailtohospital_send_date.py -------------------------------------------------------------------------------- /backend/apps/iamstudent/migrations/0015_auto_20200409_1620.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/migrations/0015_auto_20200409_1620.py -------------------------------------------------------------------------------- /backend/apps/iamstudent/migrations/0015_custom_migration_timestamps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/migrations/0015_custom_migration_timestamps.py -------------------------------------------------------------------------------- /backend/apps/iamstudent/migrations/0016_auto_20200409_1920.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/migrations/0016_auto_20200409_1920.py -------------------------------------------------------------------------------- /backend/apps/iamstudent/migrations/0017_auto_20200502_2032.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/migrations/0017_auto_20200502_2032.py -------------------------------------------------------------------------------- /backend/apps/iamstudent/migrations/0018_auto_20200522_1339.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/migrations/0018_auto_20200522_1339.py -------------------------------------------------------------------------------- /backend/apps/iamstudent/migrations/0019_auto_20200613_1655.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/migrations/0019_auto_20200613_1655.py -------------------------------------------------------------------------------- /backend/apps/iamstudent/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/apps/iamstudent/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/models.py -------------------------------------------------------------------------------- /backend/apps/iamstudent/models_persistent_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/models_persistent_filter.py -------------------------------------------------------------------------------- /backend/apps/iamstudent/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/tables.py -------------------------------------------------------------------------------- /backend/apps/iamstudent/templates/ampel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/templates/ampel.html -------------------------------------------------------------------------------- /backend/apps/iamstudent/templates/checkbox_studenttable.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /backend/apps/iamstudent/templates/emails_sent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/templates/emails_sent.html -------------------------------------------------------------------------------- /backend/apps/iamstudent/templates/input_buttongroup-any_indicator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/templates/input_buttongroup-any_indicator.html -------------------------------------------------------------------------------- /backend/apps/iamstudent/templates/input_buttongroup-egalmuss_indicator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/templates/input_buttongroup-egalmuss_indicator.html -------------------------------------------------------------------------------- /backend/apps/iamstudent/templates/input_buttongroup-progress_indicator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/templates/input_buttongroup-progress_indicator.html -------------------------------------------------------------------------------- /backend/apps/iamstudent/templates/input_buttongroup-traffic_light.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/templates/input_buttongroup-traffic_light.html -------------------------------------------------------------------------------- /backend/apps/iamstudent/templates/layout_radio_ample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/templates/layout_radio_ample.html -------------------------------------------------------------------------------- /backend/apps/iamstudent/templates/mail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/templates/mail.html -------------------------------------------------------------------------------- /backend/apps/iamstudent/templates/send_mail_hospital.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/templates/send_mail_hospital.html -------------------------------------------------------------------------------- /backend/apps/iamstudent/templates/student_list_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/templates/student_list_view.html -------------------------------------------------------------------------------- /backend/apps/iamstudent/templates/thanks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/templates/thanks.html -------------------------------------------------------------------------------- /backend/apps/iamstudent/templates/view_student.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/templates/view_student.html -------------------------------------------------------------------------------- /backend/apps/iamstudent/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/urls.py -------------------------------------------------------------------------------- /backend/apps/iamstudent/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/views.py -------------------------------------------------------------------------------- /backend/apps/iamstudent/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/iamstudent/widgets.py -------------------------------------------------------------------------------- /backend/apps/ineedstudent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/apps/ineedstudent/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/ineedstudent/apps.py -------------------------------------------------------------------------------- /backend/apps/ineedstudent/converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/ineedstudent/converters.py -------------------------------------------------------------------------------- /backend/apps/ineedstudent/filters.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/apps/ineedstudent/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/ineedstudent/forms.py -------------------------------------------------------------------------------- /backend/apps/ineedstudent/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/ineedstudent/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/apps/ineedstudent/migrations/0002_auto_20200330_0101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/ineedstudent/migrations/0002_auto_20200330_0101.py -------------------------------------------------------------------------------- /backend/apps/ineedstudent/migrations/0002_hospital_max_mails_per_day.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/ineedstudent/migrations/0002_hospital_max_mails_per_day.py -------------------------------------------------------------------------------- /backend/apps/ineedstudent/migrations/0003_merge_20200330_0124.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/ineedstudent/migrations/0003_merge_20200330_0124.py -------------------------------------------------------------------------------- /backend/apps/ineedstudent/migrations/0004_auto_20200409_1513.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/ineedstudent/migrations/0004_auto_20200409_1513.py -------------------------------------------------------------------------------- /backend/apps/ineedstudent/migrations/0005_auto_20200409_1620.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/ineedstudent/migrations/0005_auto_20200409_1620.py -------------------------------------------------------------------------------- /backend/apps/ineedstudent/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/apps/ineedstudent/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/ineedstudent/models.py -------------------------------------------------------------------------------- /backend/apps/ineedstudent/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/ineedstudent/tables.py -------------------------------------------------------------------------------- /backend/apps/ineedstudent/templates/approval_button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/ineedstudent/templates/approval_button.html -------------------------------------------------------------------------------- /backend/apps/ineedstudent/templates/change_posting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/ineedstudent/templates/change_posting.html -------------------------------------------------------------------------------- /backend/apps/ineedstudent/templates/delete_button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/ineedstudent/templates/delete_button.html -------------------------------------------------------------------------------- /backend/apps/ineedstudent/templates/hospital_contacted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/ineedstudent/templates/hospital_contacted.html -------------------------------------------------------------------------------- /backend/apps/ineedstudent/templates/hospital_dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/ineedstudent/templates/hospital_dashboard.html -------------------------------------------------------------------------------- /backend/apps/ineedstudent/templates/hospital_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/ineedstudent/templates/hospital_view.html -------------------------------------------------------------------------------- /backend/apps/ineedstudent/templates/info_button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/ineedstudent/templates/info_button.html -------------------------------------------------------------------------------- /backend/apps/ineedstudent/templates/list_hospitals_by_plz.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/ineedstudent/templates/list_hospitals_by_plz.html -------------------------------------------------------------------------------- /backend/apps/ineedstudent/templates/map_hospitals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/ineedstudent/templates/map_hospitals.html -------------------------------------------------------------------------------- /backend/apps/ineedstudent/templates/modal_button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/ineedstudent/templates/modal_button.html -------------------------------------------------------------------------------- /backend/apps/ineedstudent/templates/student_info_button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/ineedstudent/templates/student_info_button.html -------------------------------------------------------------------------------- /backend/apps/ineedstudent/templates/thanks_hospital.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/ineedstudent/templates/thanks_hospital.html -------------------------------------------------------------------------------- /backend/apps/ineedstudent/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/ineedstudent/urls.py -------------------------------------------------------------------------------- /backend/apps/ineedstudent/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/ineedstudent/views.py -------------------------------------------------------------------------------- /backend/apps/mapview/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/apps/mapview/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/mapview/apps.py -------------------------------------------------------------------------------- /backend/apps/mapview/files/AT.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/mapview/files/AT.csv -------------------------------------------------------------------------------- /backend/apps/mapview/files/DE.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/mapview/files/DE.csv -------------------------------------------------------------------------------- /backend/apps/mapview/files/plzs_merged.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/mapview/files/plzs_merged.json -------------------------------------------------------------------------------- /backend/apps/mapview/make_plz_json_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/mapview/make_plz_json_script.py -------------------------------------------------------------------------------- /backend/apps/mapview/templates/mapview/map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/mapview/templates/mapview/map.html -------------------------------------------------------------------------------- /backend/apps/mapview/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/mapview/urls.py -------------------------------------------------------------------------------- /backend/apps/mapview/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/mapview/utils.py -------------------------------------------------------------------------------- /backend/apps/mapview/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/mapview/views.py -------------------------------------------------------------------------------- /backend/apps/test_all_url_endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/test_all_url_endpoints.py -------------------------------------------------------------------------------- /backend/apps/use_statistics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/apps/use_statistics/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/use_statistics/apps.py -------------------------------------------------------------------------------- /backend/apps/use_statistics/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/apps/use_statistics/templates/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/use_statistics/templates/view.html -------------------------------------------------------------------------------- /backend/apps/use_statistics/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/use_statistics/urls.py -------------------------------------------------------------------------------- /backend/apps/use_statistics/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/apps/use_statistics/views.py -------------------------------------------------------------------------------- /backend/backups/.gitignore: -------------------------------------------------------------------------------- 1 | *.json -------------------------------------------------------------------------------- /backend/fixture_so_many_users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/fixture_so_many_users.json -------------------------------------------------------------------------------- /backend/gunicorn.conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/gunicorn.conf.py -------------------------------------------------------------------------------- /backend/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /backend/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/manage.py -------------------------------------------------------------------------------- /backend/match4healthcare/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/match4healthcare/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/match4healthcare/asgi.py -------------------------------------------------------------------------------- /backend/match4healthcare/constants/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/match4healthcare/constants/enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/match4healthcare/constants/enum.py -------------------------------------------------------------------------------- /backend/match4healthcare/logging/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/match4healthcare/logging/formatters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/match4healthcare/logging/formatters.py -------------------------------------------------------------------------------- /backend/match4healthcare/logging/loggers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/match4healthcare/logging/loggers.py -------------------------------------------------------------------------------- /backend/match4healthcare/settings/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/match4healthcare/settings/common.py -------------------------------------------------------------------------------- /backend/match4healthcare/settings/development.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/match4healthcare/settings/development.py -------------------------------------------------------------------------------- /backend/match4healthcare/settings/production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/match4healthcare/settings/production.py -------------------------------------------------------------------------------- /backend/match4healthcare/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/match4healthcare/urls.py -------------------------------------------------------------------------------- /backend/match4healthcare/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/match4healthcare/views.py -------------------------------------------------------------------------------- /backend/match4healthcare/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/match4healthcare/wsgi.py -------------------------------------------------------------------------------- /backend/requirements.prod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/requirements.prod.txt -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /backend/run/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/run/.gitignore -------------------------------------------------------------------------------- /backend/run/media/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/run/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/static/css/bootstrap_4.4.1/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/css/bootstrap_4.4.1/bootstrap.min.css -------------------------------------------------------------------------------- /backend/static/css/bootstrap_4.4.1/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/css/bootstrap_4.4.1/bootstrap.min.css.map -------------------------------------------------------------------------------- /backend/static/css/form.css: -------------------------------------------------------------------------------- 1 | .formyyy { 2 | display: block; 3 | } 4 | -------------------------------------------------------------------------------- /backend/static/css/general.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/css/general.css -------------------------------------------------------------------------------- /backend/static/css/map.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/css/map.css -------------------------------------------------------------------------------- /backend/static/email/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/email/instagram.png -------------------------------------------------------------------------------- /backend/static/email/match4healthcare-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/email/match4healthcare-logo.png -------------------------------------------------------------------------------- /backend/static/email/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/email/spacer.gif -------------------------------------------------------------------------------- /backend/static/email/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/email/twitter.png -------------------------------------------------------------------------------- /backend/static/email/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/email/youtube.png -------------------------------------------------------------------------------- /backend/static/img/BAEK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/BAEK.png -------------------------------------------------------------------------------- /backend/static/img/Budndnisjunger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/Budndnisjunger.jpg -------------------------------------------------------------------------------- /backend/static/img/Budndnisjunger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/Budndnisjunger.png -------------------------------------------------------------------------------- /backend/static/img/GitHub-Mark-Light-32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/GitHub-Mark-Light-32px.png -------------------------------------------------------------------------------- /backend/static/img/Hashtag-Gesundheit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/Hashtag-Gesundheit.png -------------------------------------------------------------------------------- /backend/static/img/KBV-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/KBV-logo.png -------------------------------------------------------------------------------- /backend/static/img/LHR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/LHR.png -------------------------------------------------------------------------------- /backend/static/img/aerzteblatt_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/aerzteblatt_logo.svg -------------------------------------------------------------------------------- /backend/static/img/ahmed_abdel_rahman_gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/ahmed_abdel_rahman_gray.jpg -------------------------------------------------------------------------------- /backend/static/img/alexandra_diendorfer_gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/alexandra_diendorfer_gray.jpg -------------------------------------------------------------------------------- /backend/static/img/amandeep_grewal_gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/amandeep_grewal_gray.jpg -------------------------------------------------------------------------------- /backend/static/img/andi2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/andi2.jpeg -------------------------------------------------------------------------------- /backend/static/img/andreas_zehetner_gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/andreas_zehetner_gray.jpg -------------------------------------------------------------------------------- /backend/static/img/apobank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/apobank.svg -------------------------------------------------------------------------------- /backend/static/img/aurica_ritter_gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/aurica_ritter_gray.jpg -------------------------------------------------------------------------------- /backend/static/img/baschdl2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/baschdl2.jpeg -------------------------------------------------------------------------------- /backend/static/img/bg-grey.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/bg-grey.jpg -------------------------------------------------------------------------------- /backend/static/img/bg-login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/bg-login.jpg -------------------------------------------------------------------------------- /backend/static/img/bissfest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/bissfest.png -------------------------------------------------------------------------------- /backend/static/img/bjarne2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/bjarne2.jpg -------------------------------------------------------------------------------- /backend/static/img/bmg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/bmg.png -------------------------------------------------------------------------------- /backend/static/img/bvmd.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/bvmd.jpeg -------------------------------------------------------------------------------- /backend/static/img/fabian_von_bubnoff_gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/fabian_von_bubnoff_gray.jpg -------------------------------------------------------------------------------- /backend/static/img/facebook-share.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/facebook-share.jpg -------------------------------------------------------------------------------- /backend/static/img/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/facebook.svg -------------------------------------------------------------------------------- /backend/static/img/favicon/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/favicon/android-icon-144x144.png -------------------------------------------------------------------------------- /backend/static/img/favicon/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/favicon/android-icon-192x192.png -------------------------------------------------------------------------------- /backend/static/img/favicon/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/favicon/android-icon-36x36.png -------------------------------------------------------------------------------- /backend/static/img/favicon/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/favicon/android-icon-48x48.png -------------------------------------------------------------------------------- /backend/static/img/favicon/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/favicon/android-icon-72x72.png -------------------------------------------------------------------------------- /backend/static/img/favicon/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/favicon/android-icon-96x96.png -------------------------------------------------------------------------------- /backend/static/img/favicon/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/favicon/apple-icon-114x114.png -------------------------------------------------------------------------------- /backend/static/img/favicon/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/favicon/apple-icon-120x120.png -------------------------------------------------------------------------------- /backend/static/img/favicon/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/favicon/apple-icon-144x144.png -------------------------------------------------------------------------------- /backend/static/img/favicon/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/favicon/apple-icon-152x152.png -------------------------------------------------------------------------------- /backend/static/img/favicon/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/favicon/apple-icon-180x180.png -------------------------------------------------------------------------------- /backend/static/img/favicon/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/favicon/apple-icon-57x57.png -------------------------------------------------------------------------------- /backend/static/img/favicon/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/favicon/apple-icon-60x60.png -------------------------------------------------------------------------------- /backend/static/img/favicon/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/favicon/apple-icon-72x72.png -------------------------------------------------------------------------------- /backend/static/img/favicon/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/favicon/apple-icon-76x76.png -------------------------------------------------------------------------------- /backend/static/img/favicon/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/favicon/apple-icon-precomposed.png -------------------------------------------------------------------------------- /backend/static/img/favicon/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/favicon/apple-icon.png -------------------------------------------------------------------------------- /backend/static/img/favicon/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/favicon/browserconfig.xml -------------------------------------------------------------------------------- /backend/static/img/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /backend/static/img/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /backend/static/img/favicon/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/favicon/favicon-96x96.png -------------------------------------------------------------------------------- /backend/static/img/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/favicon/favicon.ico -------------------------------------------------------------------------------- /backend/static/img/favicon/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/favicon/manifest.json -------------------------------------------------------------------------------- /backend/static/img/favicon/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/favicon/ms-icon-144x144.png -------------------------------------------------------------------------------- /backend/static/img/favicon/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/favicon/ms-icon-150x150.png -------------------------------------------------------------------------------- /backend/static/img/favicon/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/favicon/ms-icon-310x310.png -------------------------------------------------------------------------------- /backend/static/img/favicon/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/favicon/ms-icon-70x70.png -------------------------------------------------------------------------------- /backend/static/img/freya.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/freya.jpg -------------------------------------------------------------------------------- /backend/static/img/freya2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/freya2.jpg -------------------------------------------------------------------------------- /backend/static/img/hackaton.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/hackaton.jpg -------------------------------------------------------------------------------- /backend/static/img/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/instagram.png -------------------------------------------------------------------------------- /backend/static/img/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/instagram.svg -------------------------------------------------------------------------------- /backend/static/img/jana_aulenkamp_gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/jana_aulenkamp_gray.jpg -------------------------------------------------------------------------------- /backend/static/img/jeremy_schmidt_gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/jeremy_schmidt_gray.jpg -------------------------------------------------------------------------------- /backend/static/img/login-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/login-bg.jpg -------------------------------------------------------------------------------- /backend/static/img/logo-bvmd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/logo-bvmd.svg -------------------------------------------------------------------------------- /backend/static/img/logo-mb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/logo-mb.png -------------------------------------------------------------------------------- /backend/static/img/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/logo.jpg -------------------------------------------------------------------------------- /backend/static/img/malte_zacharias_gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/malte_zacharias_gray.jpg -------------------------------------------------------------------------------- /backend/static/img/map/facility-marker-inkscape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/map/facility-marker-inkscape.svg -------------------------------------------------------------------------------- /backend/static/img/map/facility-marker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/map/facility-marker.svg -------------------------------------------------------------------------------- /backend/static/img/map/hospital-buildings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/map/hospital-buildings.svg -------------------------------------------------------------------------------- /backend/static/img/map/supporter-marker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/map/supporter-marker.svg -------------------------------------------------------------------------------- /backend/static/img/match4healthcare-logo-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/match4healthcare-logo-text.svg -------------------------------------------------------------------------------- /backend/static/img/match4healthcare-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/match4healthcare-logo.svg -------------------------------------------------------------------------------- /backend/static/img/max_joos_gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/max_joos_gray.jpg -------------------------------------------------------------------------------- /backend/static/img/medis-vs-covid19-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/medis-vs-covid19-logo.svg -------------------------------------------------------------------------------- /backend/static/img/michael_neulinger_gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/michael_neulinger_gray.jpg -------------------------------------------------------------------------------- /backend/static/img/mobile-bg-blank.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/mobile-bg-blank.jpg -------------------------------------------------------------------------------- /backend/static/img/mobile-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/mobile-bg.jpg -------------------------------------------------------------------------------- /backend/static/img/nicolaj_hackert_gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/nicolaj_hackert_gray.jpg -------------------------------------------------------------------------------- /backend/static/img/oeh-graz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/oeh-graz.svg -------------------------------------------------------------------------------- /backend/static/img/oeh-ibk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/oeh-ibk.svg -------------------------------------------------------------------------------- /backend/static/img/oeh-klu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/oeh-klu.png -------------------------------------------------------------------------------- /backend/static/img/oeh-linz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/oeh-linz.svg -------------------------------------------------------------------------------- /backend/static/img/oeh-sfu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/oeh-sfu.png -------------------------------------------------------------------------------- /backend/static/img/oeh-wien.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/oeh-wien.svg -------------------------------------------------------------------------------- /backend/static/img/perseus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/perseus.png -------------------------------------------------------------------------------- /backend/static/img/screenshot1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/screenshot1.jpg -------------------------------------------------------------------------------- /backend/static/img/screenshot2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/screenshot2.jpg -------------------------------------------------------------------------------- /backend/static/img/screenshot3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/screenshot3.jpg -------------------------------------------------------------------------------- /backend/static/img/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/spacer.gif -------------------------------------------------------------------------------- /backend/static/img/team/ahmed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/team/ahmed.jpg -------------------------------------------------------------------------------- /backend/static/img/team/alexandra_diendorfer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/team/alexandra_diendorfer.jpg -------------------------------------------------------------------------------- /backend/static/img/team/amandeep_grewal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/team/amandeep_grewal.jpg -------------------------------------------------------------------------------- /backend/static/img/team/andi_gray.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/team/andi_gray.jpeg -------------------------------------------------------------------------------- /backend/static/img/team/andreas_kind.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/team/andreas_kind.jpg -------------------------------------------------------------------------------- /backend/static/img/team/andreas_zehetner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/team/andreas_zehetner.jpg -------------------------------------------------------------------------------- /backend/static/img/team/aurica_ritter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/team/aurica_ritter.jpg -------------------------------------------------------------------------------- /backend/static/img/team/baschdl_gray.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/team/baschdl_gray.jpeg -------------------------------------------------------------------------------- /backend/static/img/team/bjarne_sievers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/team/bjarne_sievers.jpg -------------------------------------------------------------------------------- /backend/static/img/team/bvmd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/team/bvmd.jpg -------------------------------------------------------------------------------- /backend/static/img/team/fabian_von_bubnoff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/team/fabian_von_bubnoff.jpg -------------------------------------------------------------------------------- /backend/static/img/team/freya_behrens.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/team/freya_behrens.jpg -------------------------------------------------------------------------------- /backend/static/img/team/freya_gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/team/freya_gray.jpg -------------------------------------------------------------------------------- /backend/static/img/team/jan_ruettinger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/team/jan_ruettinger.jpg -------------------------------------------------------------------------------- /backend/static/img/team/jana_aulenkamp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/team/jana_aulenkamp.jpg -------------------------------------------------------------------------------- /backend/static/img/team/jeremy_schmidt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/team/jeremy_schmidt.jpg -------------------------------------------------------------------------------- /backend/static/img/team/jonathan_sauder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/team/jonathan_sauder.png -------------------------------------------------------------------------------- /backend/static/img/team/kevin_yuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/team/kevin_yuan.png -------------------------------------------------------------------------------- /backend/static/img/team/koray_guel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/team/koray_guel.jpg -------------------------------------------------------------------------------- /backend/static/img/team/leonard_balzer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/team/leonard_balzer.jpg -------------------------------------------------------------------------------- /backend/static/img/team/logo-medis-vs-covid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/team/logo-medis-vs-covid.jpg -------------------------------------------------------------------------------- /backend/static/img/team/logo-medis-vs-covid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/team/logo-medis-vs-covid.svg -------------------------------------------------------------------------------- /backend/static/img/team/malte_zacharias.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/team/malte_zacharias.jpg -------------------------------------------------------------------------------- /backend/static/img/team/max_joos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/team/max_joos.jpg -------------------------------------------------------------------------------- /backend/static/img/team/michael_neulinger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/team/michael_neulinger.jpg -------------------------------------------------------------------------------- /backend/static/img/team/nicolaj_hackert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/team/nicolaj_hackert.jpg -------------------------------------------------------------------------------- /backend/static/img/team/sebastian_bischoff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/team/sebastian_bischoff.jpg -------------------------------------------------------------------------------- /backend/static/img/team/svilen_stefanov.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/team/svilen_stefanov.jpg -------------------------------------------------------------------------------- /backend/static/img/thieme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/thieme.png -------------------------------------------------------------------------------- /backend/static/img/title.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/title.jpg -------------------------------------------------------------------------------- /backend/static/img/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/twitter.png -------------------------------------------------------------------------------- /backend/static/img/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/twitter.svg -------------------------------------------------------------------------------- /backend/static/img/wie-funktionierts-home-de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/wie-funktionierts-home-de.png -------------------------------------------------------------------------------- /backend/static/img/wie-funktionierts-home-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/wie-funktionierts-home-en.png -------------------------------------------------------------------------------- /backend/static/img/wir-vs-virus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/wir-vs-virus.svg -------------------------------------------------------------------------------- /backend/static/img/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/youtube.png -------------------------------------------------------------------------------- /backend/static/img/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/img/youtube.svg -------------------------------------------------------------------------------- /backend/static/js/Leaflet.FeatureGroup.SubGroup-1.0.2/leaflet.featuregroup.subgroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/js/Leaflet.FeatureGroup.SubGroup-1.0.2/leaflet.featuregroup.subgroup.js -------------------------------------------------------------------------------- /backend/static/js/PostingForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/js/PostingForm.js -------------------------------------------------------------------------------- /backend/static/js/bootstrap_4.4.1/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/js/bootstrap_4.4.1/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /backend/static/js/bootstrap_4.4.1/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/js/bootstrap_4.4.1/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /backend/static/js/jquery-3.4.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/js/jquery-3.4.1.min.js -------------------------------------------------------------------------------- /backend/static/js/leaflet-1.6.0/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/js/leaflet-1.6.0/images/layers-2x.png -------------------------------------------------------------------------------- /backend/static/js/leaflet-1.6.0/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/js/leaflet-1.6.0/images/layers.png -------------------------------------------------------------------------------- /backend/static/js/leaflet-1.6.0/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/js/leaflet-1.6.0/images/marker-icon-2x.png -------------------------------------------------------------------------------- /backend/static/js/leaflet-1.6.0/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/js/leaflet-1.6.0/images/marker-icon.png -------------------------------------------------------------------------------- /backend/static/js/leaflet-1.6.0/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/js/leaflet-1.6.0/images/marker-shadow.png -------------------------------------------------------------------------------- /backend/static/js/leaflet-1.6.0/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/js/leaflet-1.6.0/leaflet.css -------------------------------------------------------------------------------- /backend/static/js/leaflet-1.6.0/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/js/leaflet-1.6.0/leaflet.js -------------------------------------------------------------------------------- /backend/static/js/leaflet-1.6.0/leaflet.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/js/leaflet-1.6.0/leaflet.js.map -------------------------------------------------------------------------------- /backend/static/js/leaflet.markercluster-1.4.1/MarkerCluster.Default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/js/leaflet.markercluster-1.4.1/MarkerCluster.Default.css -------------------------------------------------------------------------------- /backend/static/js/leaflet.markercluster-1.4.1/MarkerCluster.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/js/leaflet.markercluster-1.4.1/MarkerCluster.css -------------------------------------------------------------------------------- /backend/static/js/leaflet.markercluster-1.4.1/leaflet.markercluster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/js/leaflet.markercluster-1.4.1/leaflet.markercluster.js -------------------------------------------------------------------------------- /backend/static/js/leaflet.markercluster-1.4.1/leaflet.markercluster.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/js/leaflet.markercluster-1.4.1/leaflet.markercluster.js.map -------------------------------------------------------------------------------- /backend/static/js/mapview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/static/js/mapview.js -------------------------------------------------------------------------------- /backend/static/js/util.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/templates/404.html -------------------------------------------------------------------------------- /backend/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/templates/500.html -------------------------------------------------------------------------------- /backend/templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/templates/about.html -------------------------------------------------------------------------------- /backend/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/templates/base.html -------------------------------------------------------------------------------- /backend/templates/dataprotection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/templates/dataprotection.html -------------------------------------------------------------------------------- /backend/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/templates/home.html -------------------------------------------------------------------------------- /backend/templates/impressum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/templates/impressum.html -------------------------------------------------------------------------------- /backend/templates/legal-questions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/templates/legal-questions.html -------------------------------------------------------------------------------- /backend/templates/terms-of-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backend/templates/terms-of-use.html -------------------------------------------------------------------------------- /backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/backup.sh -------------------------------------------------------------------------------- /database.prod.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/database.prod.env.example -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/database/.gitignore -------------------------------------------------------------------------------- /database/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/database/Dockerfile -------------------------------------------------------------------------------- /database/init-db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/database/init-db.sh -------------------------------------------------------------------------------- /database/postgresql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/database/postgresql.conf -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/deploy.sh -------------------------------------------------------------------------------- /docker-compose.dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/docker-compose.dev.yml -------------------------------------------------------------------------------- /docker-compose.prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/docker-compose.prod.yml -------------------------------------------------------------------------------- /scripts/check_website_availability.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/scripts/check_website_availability.sh -------------------------------------------------------------------------------- /scripts/wait_for_backend.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/scripts/wait_for_backend.sh -------------------------------------------------------------------------------- /scripts/write_envs_to_file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/scripts/write_envs_to_file.sh -------------------------------------------------------------------------------- /tools/nginx-sample-site: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/tools/nginx-sample-site -------------------------------------------------------------------------------- /tools/static-error-page/504.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/tools/static-error-page/504.html -------------------------------------------------------------------------------- /tools/static-error-page/error-page-resources/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/tools/static-error-page/error-page-resources/bg.jpg -------------------------------------------------------------------------------- /tools/static-error-page/error-page-resources/match4healthcare-logo-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/tools/static-error-page/error-page-resources/match4healthcare-logo-text.svg -------------------------------------------------------------------------------- /tools/static-error-page/error-page-resources/match4healthcare-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/match4everyone/match4healthcare/HEAD/tools/static-error-page/error-page-resources/match4healthcare-logo.svg --------------------------------------------------------------------------------