diff --git a/.circleci/config.yml b/.circleci/config.yml index dbc0b44154ee603756132ca51012a2058ae044c3..ebc0e127484f9d1ef0149f0807e8f3b9d2e0c423 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,16 +8,16 @@ jobs: docker: - image: circleci/python:3.6.9-stretch-node environment: - DATABASE_URL: postgresql://root@localhost/opentech?sslmode=disable + DATABASE_URL: postgresql://root@localhost/hypha?sslmode=disable PGHOST: localhost PGUSER: root - DJANGO_SETTINGS_MODULE: opentech.settings.test + DJANGO_SETTINGS_MODULE: hypha.settings.test SEND_MESSAGES: false - image: circleci/postgres:10.10 environment: POSTGRES_USER: root - POSTGRES_DB: opentech + POSTGRES_DB: hypha working_directory: ~/repo @@ -74,9 +74,9 @@ jobs: name: run tests command: | . venv/bin/activate - flake8 ./opentech + flake8 ./hypha python manage.py collectstatic --noinput --verbosity=0 python manage.py check python manage.py makemigrations --check --noinput --verbosity=1 - coverage run --source='opentech' manage.py test + coverage run --source='hypha' manage.py test codecov diff --git a/.gitignore b/.gitignore index 20330b65c746c0306fd81e0bfed80d664440db3d..fe6b2ed34291ab03f55a5a57ec13dfe3954c0377 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ -/opentech/static_compiled +/hypha/static_compiled *.pyc .DS_Store diff --git a/.travis.yml b/.travis.yml index f94e94453b6e858c5c342d9a5e045522ad0deb0a..bb0b49d2390b2213d35ed303f802bd63081c540b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,7 +19,7 @@ addons: env: global: - - DJANGO_SETTINGS_MODULE=opentech.settings.test + - DJANGO_SETTINGS_MODULE=hypha.settings.test - DATABASE_URL=postgres://postgres@localhost/test_db before_script: @@ -48,7 +48,7 @@ install: # Run the tests script: # Run python code style checks - - flake8 ./opentech + - flake8 ./hypha # Collect static - python manage.py collectstatic --noinput --verbosity=0 diff --git a/opentech/.gitignore b/hypha/.gitignore similarity index 100% rename from opentech/.gitignore rename to hypha/.gitignore diff --git a/opentech/__init__.py b/hypha/__init__.py similarity index 100% rename from opentech/__init__.py rename to hypha/__init__.py diff --git a/opentech/apply/__init__.py b/hypha/apply/__init__.py similarity index 100% rename from opentech/apply/__init__.py rename to hypha/apply/__init__.py diff --git a/opentech/apply/activity/__init__.py b/hypha/apply/activity/__init__.py similarity index 100% rename from opentech/apply/activity/__init__.py rename to hypha/apply/activity/__init__.py diff --git a/opentech/apply/activity/admin.py b/hypha/apply/activity/admin.py similarity index 100% rename from opentech/apply/activity/admin.py rename to hypha/apply/activity/admin.py diff --git a/opentech/apply/activity/apps.py b/hypha/apply/activity/apps.py similarity index 100% rename from opentech/apply/activity/apps.py rename to hypha/apply/activity/apps.py diff --git a/opentech/apply/activity/forms.py b/hypha/apply/activity/forms.py similarity index 100% rename from opentech/apply/activity/forms.py rename to hypha/apply/activity/forms.py diff --git a/opentech/apply/activity/management/__init__.py b/hypha/apply/activity/management/__init__.py similarity index 100% rename from opentech/apply/activity/management/__init__.py rename to hypha/apply/activity/management/__init__.py diff --git a/opentech/apply/activity/management/commands/__init__.py b/hypha/apply/activity/management/commands/__init__.py similarity index 100% rename from opentech/apply/activity/management/commands/__init__.py rename to hypha/apply/activity/management/commands/__init__.py diff --git a/opentech/apply/activity/management/commands/migrate_comments.py b/hypha/apply/activity/management/commands/migrate_comments.py similarity index 100% rename from opentech/apply/activity/management/commands/migrate_comments.py rename to hypha/apply/activity/management/commands/migrate_comments.py diff --git a/opentech/apply/activity/messaging.py b/hypha/apply/activity/messaging.py similarity index 100% rename from opentech/apply/activity/messaging.py rename to hypha/apply/activity/messaging.py diff --git a/opentech/apply/activity/migrations/0001_initial.py b/hypha/apply/activity/migrations/0001_initial.py similarity index 100% rename from opentech/apply/activity/migrations/0001_initial.py rename to hypha/apply/activity/migrations/0001_initial.py diff --git a/opentech/apply/activity/migrations/0002_activity_type.py b/hypha/apply/activity/migrations/0002_activity_type.py similarity index 100% rename from opentech/apply/activity/migrations/0002_activity_type.py rename to hypha/apply/activity/migrations/0002_activity_type.py diff --git a/opentech/apply/activity/migrations/0003_activity_visibility.py b/hypha/apply/activity/migrations/0003_activity_visibility.py similarity index 100% rename from opentech/apply/activity/migrations/0003_activity_visibility.py rename to hypha/apply/activity/migrations/0003_activity_visibility.py diff --git a/opentech/apply/activity/migrations/0004_update_on_delete_django2.py b/hypha/apply/activity/migrations/0004_update_on_delete_django2.py similarity index 100% rename from opentech/apply/activity/migrations/0004_update_on_delete_django2.py rename to hypha/apply/activity/migrations/0004_update_on_delete_django2.py diff --git a/opentech/apply/activity/migrations/0005_event.py b/hypha/apply/activity/migrations/0005_event.py similarity index 100% rename from opentech/apply/activity/migrations/0005_event.py rename to hypha/apply/activity/migrations/0005_event.py diff --git a/opentech/apply/activity/migrations/0006_message.py b/hypha/apply/activity/migrations/0006_message.py similarity index 100% rename from opentech/apply/activity/migrations/0006_message.py rename to hypha/apply/activity/migrations/0006_message.py diff --git a/opentech/apply/activity/migrations/0007_message_status.py b/hypha/apply/activity/migrations/0007_message_status.py similarity index 100% rename from opentech/apply/activity/migrations/0007_message_status.py rename to hypha/apply/activity/migrations/0007_message_status.py diff --git a/opentech/apply/activity/migrations/0008_message_external_id.py b/hypha/apply/activity/migrations/0008_message_external_id.py similarity index 100% rename from opentech/apply/activity/migrations/0008_message_external_id.py rename to hypha/apply/activity/migrations/0008_message_external_id.py diff --git a/opentech/apply/activity/migrations/0009_add_private_option.py b/hypha/apply/activity/migrations/0009_add_private_option.py similarity index 100% rename from opentech/apply/activity/migrations/0009_add_private_option.py rename to hypha/apply/activity/migrations/0009_add_private_option.py diff --git a/opentech/apply/activity/migrations/0011_add_new_event_type.py b/hypha/apply/activity/migrations/0011_add_new_event_type.py similarity index 100% rename from opentech/apply/activity/migrations/0011_add_new_event_type.py rename to hypha/apply/activity/migrations/0011_add_new_event_type.py diff --git a/opentech/apply/activity/migrations/0012_add_generic_relation_to_activity.py b/hypha/apply/activity/migrations/0012_add_generic_relation_to_activity.py similarity index 100% rename from opentech/apply/activity/migrations/0012_add_generic_relation_to_activity.py rename to hypha/apply/activity/migrations/0012_add_generic_relation_to_activity.py diff --git a/opentech/apply/activity/migrations/0013_add_new_event_type_screening.py b/hypha/apply/activity/migrations/0013_add_new_event_type_screening.py similarity index 100% rename from opentech/apply/activity/migrations/0013_add_new_event_type_screening.py rename to hypha/apply/activity/migrations/0013_add_new_event_type_screening.py diff --git a/opentech/apply/activity/migrations/0014_add_batch_reviewer_message.py b/hypha/apply/activity/migrations/0014_add_batch_reviewer_message.py similarity index 100% rename from opentech/apply/activity/migrations/0014_add_batch_reviewer_message.py rename to hypha/apply/activity/migrations/0014_add_batch_reviewer_message.py diff --git a/opentech/apply/activity/migrations/0015_add_batch_transition.py b/hypha/apply/activity/migrations/0015_add_batch_transition.py similarity index 100% rename from opentech/apply/activity/migrations/0015_add_batch_transition.py rename to hypha/apply/activity/migrations/0015_add_batch_transition.py diff --git a/opentech/apply/activity/migrations/0016_add_batch_ready.py b/hypha/apply/activity/migrations/0016_add_batch_ready.py similarity index 100% rename from opentech/apply/activity/migrations/0016_add_batch_ready.py rename to hypha/apply/activity/migrations/0016_add_batch_ready.py diff --git a/opentech/apply/activity/migrations/0017_add_review_opinion.py b/hypha/apply/activity/migrations/0017_add_review_opinion.py similarity index 100% rename from opentech/apply/activity/migrations/0017_add_review_opinion.py rename to hypha/apply/activity/migrations/0017_add_review_opinion.py diff --git a/opentech/apply/activity/migrations/0018_add_batch_determine.py b/hypha/apply/activity/migrations/0018_add_batch_determine.py similarity index 100% rename from opentech/apply/activity/migrations/0018_add_batch_determine.py rename to hypha/apply/activity/migrations/0018_add_batch_determine.py diff --git a/opentech/apply/activity/migrations/0019_partner_field_event.py b/hypha/apply/activity/migrations/0019_partner_field_event.py similarity index 100% rename from opentech/apply/activity/migrations/0019_partner_field_event.py rename to hypha/apply/activity/migrations/0019_partner_field_event.py diff --git a/opentech/apply/activity/migrations/0020_add_delete_event.py b/hypha/apply/activity/migrations/0020_add_delete_event.py similarity index 100% rename from opentech/apply/activity/migrations/0020_add_delete_event.py rename to hypha/apply/activity/migrations/0020_add_delete_event.py diff --git a/opentech/apply/activity/migrations/0021_add_review_delete_event.py b/hypha/apply/activity/migrations/0021_add_review_delete_event.py similarity index 100% rename from opentech/apply/activity/migrations/0021_add_review_delete_event.py rename to hypha/apply/activity/migrations/0021_add_review_delete_event.py diff --git a/opentech/apply/activity/migrations/0022_add_versioning_to_comments.py b/hypha/apply/activity/migrations/0022_add_versioning_to_comments.py similarity index 100% rename from opentech/apply/activity/migrations/0022_add_versioning_to_comments.py rename to hypha/apply/activity/migrations/0022_add_versioning_to_comments.py diff --git a/opentech/apply/activity/migrations/0023_notify_partners.py b/hypha/apply/activity/migrations/0023_notify_partners.py similarity index 100% rename from opentech/apply/activity/migrations/0023_notify_partners.py rename to hypha/apply/activity/migrations/0023_notify_partners.py diff --git a/opentech/apply/activity/migrations/0024_add_review_edit_event.py b/hypha/apply/activity/migrations/0024_add_review_edit_event.py similarity index 100% rename from opentech/apply/activity/migrations/0024_add_review_edit_event.py rename to hypha/apply/activity/migrations/0024_add_review_edit_event.py diff --git a/opentech/apply/activity/migrations/0025_add_batch_lead_event.py b/hypha/apply/activity/migrations/0025_add_batch_lead_event.py similarity index 100% rename from opentech/apply/activity/migrations/0025_add_batch_lead_event.py rename to hypha/apply/activity/migrations/0025_add_batch_lead_event.py diff --git a/opentech/apply/activity/migrations/0026_add_created_project_event.py b/hypha/apply/activity/migrations/0026_add_created_project_event.py similarity index 100% rename from opentech/apply/activity/migrations/0026_add_created_project_event.py rename to hypha/apply/activity/migrations/0026_add_created_project_event.py diff --git a/opentech/apply/activity/migrations/0026_update_visibility_options.py b/hypha/apply/activity/migrations/0026_update_visibility_options.py similarity index 100% rename from opentech/apply/activity/migrations/0026_update_visibility_options.py rename to hypha/apply/activity/migrations/0026_update_visibility_options.py diff --git a/opentech/apply/activity/migrations/0027_add_update_project_lead.py b/hypha/apply/activity/migrations/0027_add_update_project_lead.py similarity index 100% rename from opentech/apply/activity/migrations/0027_add_update_project_lead.py rename to hypha/apply/activity/migrations/0027_add_update_project_lead.py diff --git a/opentech/apply/activity/migrations/0027_update_visibility_options_2.py b/hypha/apply/activity/migrations/0027_update_visibility_options_2.py similarity index 100% rename from opentech/apply/activity/migrations/0027_update_visibility_options_2.py rename to hypha/apply/activity/migrations/0027_update_visibility_options_2.py diff --git a/opentech/apply/activity/migrations/0028_add_new_generic_relation.py b/hypha/apply/activity/migrations/0028_add_new_generic_relation.py similarity index 100% rename from opentech/apply/activity/migrations/0028_add_new_generic_relation.py rename to hypha/apply/activity/migrations/0028_add_new_generic_relation.py diff --git a/opentech/apply/activity/migrations/0028_migrate_messages_with_visibility.py b/hypha/apply/activity/migrations/0028_migrate_messages_with_visibility.py similarity index 100% rename from opentech/apply/activity/migrations/0028_migrate_messages_with_visibility.py rename to hypha/apply/activity/migrations/0028_migrate_messages_with_visibility.py diff --git a/opentech/apply/activity/migrations/0029_migrate_old_submission_relation.py b/hypha/apply/activity/migrations/0029_migrate_old_submission_relation.py similarity index 100% rename from opentech/apply/activity/migrations/0029_migrate_old_submission_relation.py rename to hypha/apply/activity/migrations/0029_migrate_old_submission_relation.py diff --git a/opentech/apply/activity/migrations/0030_remove_old_relation.py b/hypha/apply/activity/migrations/0030_remove_old_relation.py similarity index 100% rename from opentech/apply/activity/migrations/0030_remove_old_relation.py rename to hypha/apply/activity/migrations/0030_remove_old_relation.py diff --git a/opentech/apply/activity/migrations/0031_add_generic_fk_to_event.py b/hypha/apply/activity/migrations/0031_add_generic_fk_to_event.py similarity index 100% rename from opentech/apply/activity/migrations/0031_add_generic_fk_to_event.py rename to hypha/apply/activity/migrations/0031_add_generic_fk_to_event.py diff --git a/opentech/apply/activity/migrations/0032_migrate_submission_to_generic_event.py b/hypha/apply/activity/migrations/0032_migrate_submission_to_generic_event.py similarity index 100% rename from opentech/apply/activity/migrations/0032_migrate_submission_to_generic_event.py rename to hypha/apply/activity/migrations/0032_migrate_submission_to_generic_event.py diff --git a/opentech/apply/activity/migrations/0033_remove_old_submission_fk_event.py b/hypha/apply/activity/migrations/0033_remove_old_submission_fk_event.py similarity index 100% rename from opentech/apply/activity/migrations/0033_remove_old_submission_fk_event.py rename to hypha/apply/activity/migrations/0033_remove_old_submission_fk_event.py diff --git a/opentech/apply/activity/migrations/0034_add_send_for_approval.py b/hypha/apply/activity/migrations/0034_add_send_for_approval.py similarity index 100% rename from opentech/apply/activity/migrations/0034_add_send_for_approval.py rename to hypha/apply/activity/migrations/0034_add_send_for_approval.py diff --git a/opentech/apply/activity/migrations/0035_add_approve_project.py b/hypha/apply/activity/migrations/0035_add_approve_project.py similarity index 100% rename from opentech/apply/activity/migrations/0035_add_approve_project.py rename to hypha/apply/activity/migrations/0035_add_approve_project.py diff --git a/opentech/apply/activity/migrations/0036_add_reject_project.py b/hypha/apply/activity/migrations/0036_add_reject_project.py similarity index 100% rename from opentech/apply/activity/migrations/0036_add_reject_project.py rename to hypha/apply/activity/migrations/0036_add_reject_project.py diff --git a/opentech/apply/activity/migrations/0037_add_upload_document.py b/hypha/apply/activity/migrations/0037_add_upload_document.py similarity index 100% rename from opentech/apply/activity/migrations/0037_add_upload_document.py rename to hypha/apply/activity/migrations/0037_add_upload_document.py diff --git a/opentech/apply/activity/migrations/0038_auto_20190808_1142.py b/hypha/apply/activity/migrations/0038_auto_20190808_1142.py similarity index 100% rename from opentech/apply/activity/migrations/0038_auto_20190808_1142.py rename to hypha/apply/activity/migrations/0038_auto_20190808_1142.py diff --git a/opentech/apply/activity/migrations/0039_add_remove_document.py b/hypha/apply/activity/migrations/0039_add_remove_document.py similarity index 100% rename from opentech/apply/activity/migrations/0039_add_remove_document.py rename to hypha/apply/activity/migrations/0039_add_remove_document.py diff --git a/opentech/apply/activity/migrations/0040_merge_activity_update_and_generic_relations.py b/hypha/apply/activity/migrations/0040_merge_activity_update_and_generic_relations.py similarity index 100% rename from opentech/apply/activity/migrations/0040_merge_activity_update_and_generic_relations.py rename to hypha/apply/activity/migrations/0040_merge_activity_update_and_generic_relations.py diff --git a/opentech/apply/activity/migrations/0041_add_upload_contract.py b/hypha/apply/activity/migrations/0041_add_upload_contract.py similarity index 100% rename from opentech/apply/activity/migrations/0041_add_upload_contract.py rename to hypha/apply/activity/migrations/0041_add_upload_contract.py diff --git a/opentech/apply/activity/migrations/0042_add_approve_contract.py b/hypha/apply/activity/migrations/0042_add_approve_contract.py similarity index 100% rename from opentech/apply/activity/migrations/0042_add_approve_contract.py rename to hypha/apply/activity/migrations/0042_add_approve_contract.py diff --git a/opentech/apply/activity/migrations/0043_add_request_payment.py b/hypha/apply/activity/migrations/0043_add_request_payment.py similarity index 100% rename from opentech/apply/activity/migrations/0043_add_request_payment.py rename to hypha/apply/activity/migrations/0043_add_request_payment.py diff --git a/opentech/apply/activity/migrations/0044_add_update_payment_request_status.py b/hypha/apply/activity/migrations/0044_add_update_payment_request_status.py similarity index 100% rename from opentech/apply/activity/migrations/0044_add_update_payment_request_status.py rename to hypha/apply/activity/migrations/0044_add_update_payment_request_status.py diff --git a/opentech/apply/activity/migrations/0045_add_delete_payment_request.py b/hypha/apply/activity/migrations/0045_add_delete_payment_request.py similarity index 100% rename from opentech/apply/activity/migrations/0045_add_delete_payment_request.py rename to hypha/apply/activity/migrations/0045_add_delete_payment_request.py diff --git a/opentech/apply/activity/migrations/0046_add_sent_to_compliance.py b/hypha/apply/activity/migrations/0046_add_sent_to_compliance.py similarity index 100% rename from opentech/apply/activity/migrations/0046_add_sent_to_compliance.py rename to hypha/apply/activity/migrations/0046_add_sent_to_compliance.py diff --git a/opentech/apply/activity/migrations/0047_add_update_payment_request.py b/hypha/apply/activity/migrations/0047_add_update_payment_request.py similarity index 100% rename from opentech/apply/activity/migrations/0047_add_update_payment_request.py rename to hypha/apply/activity/migrations/0047_add_update_payment_request.py diff --git a/opentech/apply/activity/migrations/0048_add_project_transition.py b/hypha/apply/activity/migrations/0048_add_project_transition.py similarity index 100% rename from opentech/apply/activity/migrations/0048_add_project_transition.py rename to hypha/apply/activity/migrations/0048_add_project_transition.py diff --git a/opentech/apply/activity/migrations/0049_auto_20191112_1227.py b/hypha/apply/activity/migrations/0049_auto_20191112_1227.py similarity index 100% rename from opentech/apply/activity/migrations/0049_auto_20191112_1227.py rename to hypha/apply/activity/migrations/0049_auto_20191112_1227.py diff --git a/opentech/apply/activity/migrations/0050_add_submit_report.py b/hypha/apply/activity/migrations/0050_add_submit_report.py similarity index 100% rename from opentech/apply/activity/migrations/0050_add_submit_report.py rename to hypha/apply/activity/migrations/0050_add_submit_report.py diff --git a/opentech/apply/activity/migrations/0051_add_report_skipping_activity.py b/hypha/apply/activity/migrations/0051_add_report_skipping_activity.py similarity index 100% rename from opentech/apply/activity/migrations/0051_add_report_skipping_activity.py rename to hypha/apply/activity/migrations/0051_add_report_skipping_activity.py diff --git a/opentech/apply/activity/migrations/0052_report_frequency_change.py b/hypha/apply/activity/migrations/0052_report_frequency_change.py similarity index 100% rename from opentech/apply/activity/migrations/0052_report_frequency_change.py rename to hypha/apply/activity/migrations/0052_report_frequency_change.py diff --git a/opentech/apply/activity/migrations/0053_nullable_by_report_notify.py b/hypha/apply/activity/migrations/0053_nullable_by_report_notify.py similarity index 100% rename from opentech/apply/activity/migrations/0053_nullable_by_report_notify.py rename to hypha/apply/activity/migrations/0053_nullable_by_report_notify.py diff --git a/opentech/apply/activity/migrations/__init__.py b/hypha/apply/activity/migrations/__init__.py similarity index 100% rename from opentech/apply/activity/migrations/__init__.py rename to hypha/apply/activity/migrations/__init__.py diff --git a/opentech/apply/activity/models.py b/hypha/apply/activity/models.py similarity index 100% rename from opentech/apply/activity/models.py rename to hypha/apply/activity/models.py diff --git a/opentech/apply/activity/options.py b/hypha/apply/activity/options.py similarity index 100% rename from opentech/apply/activity/options.py rename to hypha/apply/activity/options.py diff --git a/opentech/apply/activity/signals.py b/hypha/apply/activity/signals.py similarity index 100% rename from opentech/apply/activity/signals.py rename to hypha/apply/activity/signals.py diff --git a/opentech/apply/activity/tasks.py b/hypha/apply/activity/tasks.py similarity index 100% rename from opentech/apply/activity/tasks.py rename to hypha/apply/activity/tasks.py diff --git a/opentech/apply/activity/templates/activity/include/action_list.html b/hypha/apply/activity/templates/activity/include/action_list.html similarity index 100% rename from opentech/apply/activity/templates/activity/include/action_list.html rename to hypha/apply/activity/templates/activity/include/action_list.html diff --git a/opentech/apply/activity/templates/activity/include/all_activity_list.html b/hypha/apply/activity/templates/activity/include/all_activity_list.html similarity index 100% rename from opentech/apply/activity/templates/activity/include/all_activity_list.html rename to hypha/apply/activity/templates/activity/include/all_activity_list.html diff --git a/opentech/apply/activity/templates/activity/include/comment_form.html b/hypha/apply/activity/templates/activity/include/comment_form.html similarity index 100% rename from opentech/apply/activity/templates/activity/include/comment_form.html rename to hypha/apply/activity/templates/activity/include/comment_form.html diff --git a/opentech/apply/activity/templates/activity/include/comment_list.html b/hypha/apply/activity/templates/activity/include/comment_list.html similarity index 100% rename from opentech/apply/activity/templates/activity/include/comment_list.html rename to hypha/apply/activity/templates/activity/include/comment_list.html diff --git a/opentech/apply/activity/templates/activity/include/listing_base.html b/hypha/apply/activity/templates/activity/include/listing_base.html similarity index 100% rename from opentech/apply/activity/templates/activity/include/listing_base.html rename to hypha/apply/activity/templates/activity/include/listing_base.html diff --git a/opentech/apply/activity/templates/messages/email/applicant_base.html b/hypha/apply/activity/templates/messages/email/applicant_base.html similarity index 100% rename from opentech/apply/activity/templates/messages/email/applicant_base.html rename to hypha/apply/activity/templates/messages/email/applicant_base.html diff --git a/opentech/apply/activity/templates/messages/email/base.html b/hypha/apply/activity/templates/messages/email/base.html similarity index 100% rename from opentech/apply/activity/templates/messages/email/base.html rename to hypha/apply/activity/templates/messages/email/base.html diff --git a/opentech/apply/activity/templates/messages/email/batch_ready_to_review.html b/hypha/apply/activity/templates/messages/email/batch_ready_to_review.html similarity index 100% rename from opentech/apply/activity/templates/messages/email/batch_ready_to_review.html rename to hypha/apply/activity/templates/messages/email/batch_ready_to_review.html diff --git a/opentech/apply/activity/templates/messages/email/comment.html b/hypha/apply/activity/templates/messages/email/comment.html similarity index 100% rename from opentech/apply/activity/templates/messages/email/comment.html rename to hypha/apply/activity/templates/messages/email/comment.html diff --git a/opentech/apply/activity/templates/messages/email/contract_uploaded.html b/hypha/apply/activity/templates/messages/email/contract_uploaded.html similarity index 100% rename from opentech/apply/activity/templates/messages/email/contract_uploaded.html rename to hypha/apply/activity/templates/messages/email/contract_uploaded.html diff --git a/opentech/apply/activity/templates/messages/email/determination.html b/hypha/apply/activity/templates/messages/email/determination.html similarity index 100% rename from opentech/apply/activity/templates/messages/email/determination.html rename to hypha/apply/activity/templates/messages/email/determination.html diff --git a/opentech/apply/activity/templates/messages/email/edit.html b/hypha/apply/activity/templates/messages/email/edit.html similarity index 100% rename from opentech/apply/activity/templates/messages/email/edit.html rename to hypha/apply/activity/templates/messages/email/edit.html diff --git a/opentech/apply/activity/templates/messages/email/invited_to_proposal.html b/hypha/apply/activity/templates/messages/email/invited_to_proposal.html similarity index 100% rename from opentech/apply/activity/templates/messages/email/invited_to_proposal.html rename to hypha/apply/activity/templates/messages/email/invited_to_proposal.html diff --git a/opentech/apply/activity/templates/messages/email/partners_update_applicant.html b/hypha/apply/activity/templates/messages/email/partners_update_applicant.html similarity index 100% rename from opentech/apply/activity/templates/messages/email/partners_update_applicant.html rename to hypha/apply/activity/templates/messages/email/partners_update_applicant.html diff --git a/opentech/apply/activity/templates/messages/email/partners_update_partner.html b/hypha/apply/activity/templates/messages/email/partners_update_partner.html similarity index 100% rename from opentech/apply/activity/templates/messages/email/partners_update_partner.html rename to hypha/apply/activity/templates/messages/email/partners_update_partner.html diff --git a/opentech/apply/activity/templates/messages/email/payment_request_status_updated.html b/hypha/apply/activity/templates/messages/email/payment_request_status_updated.html similarity index 100% rename from opentech/apply/activity/templates/messages/email/payment_request_status_updated.html rename to hypha/apply/activity/templates/messages/email/payment_request_status_updated.html diff --git a/opentech/apply/activity/templates/messages/email/payment_request_updated.html b/hypha/apply/activity/templates/messages/email/payment_request_updated.html similarity index 100% rename from opentech/apply/activity/templates/messages/email/payment_request_updated.html rename to hypha/apply/activity/templates/messages/email/payment_request_updated.html diff --git a/opentech/apply/activity/templates/messages/email/ready_to_review.html b/hypha/apply/activity/templates/messages/email/ready_to_review.html similarity index 100% rename from opentech/apply/activity/templates/messages/email/ready_to_review.html rename to hypha/apply/activity/templates/messages/email/ready_to_review.html diff --git a/opentech/apply/activity/templates/messages/email/report_frequency.html b/hypha/apply/activity/templates/messages/email/report_frequency.html similarity index 100% rename from opentech/apply/activity/templates/messages/email/report_frequency.html rename to hypha/apply/activity/templates/messages/email/report_frequency.html diff --git a/opentech/apply/activity/templates/messages/email/report_notify.html b/hypha/apply/activity/templates/messages/email/report_notify.html similarity index 100% rename from opentech/apply/activity/templates/messages/email/report_notify.html rename to hypha/apply/activity/templates/messages/email/report_notify.html diff --git a/opentech/apply/activity/templates/messages/email/report_skipped.html b/hypha/apply/activity/templates/messages/email/report_skipped.html similarity index 100% rename from opentech/apply/activity/templates/messages/email/report_skipped.html rename to hypha/apply/activity/templates/messages/email/report_skipped.html diff --git a/opentech/apply/activity/templates/messages/email/report_submitted.html b/hypha/apply/activity/templates/messages/email/report_submitted.html similarity index 100% rename from opentech/apply/activity/templates/messages/email/report_submitted.html rename to hypha/apply/activity/templates/messages/email/report_submitted.html diff --git a/opentech/apply/activity/templates/messages/email/sent_to_compliance.html b/hypha/apply/activity/templates/messages/email/sent_to_compliance.html similarity index 100% rename from opentech/apply/activity/templates/messages/email/sent_to_compliance.html rename to hypha/apply/activity/templates/messages/email/sent_to_compliance.html diff --git a/opentech/apply/activity/templates/messages/email/transition.html b/hypha/apply/activity/templates/messages/email/transition.html similarity index 100% rename from opentech/apply/activity/templates/messages/email/transition.html rename to hypha/apply/activity/templates/messages/email/transition.html diff --git a/opentech/apply/activity/templatetags/__init__.py b/hypha/apply/activity/templatetags/__init__.py similarity index 100% rename from opentech/apply/activity/templatetags/__init__.py rename to hypha/apply/activity/templatetags/__init__.py diff --git a/opentech/apply/activity/templatetags/activity_tags.py b/hypha/apply/activity/templatetags/activity_tags.py similarity index 100% rename from opentech/apply/activity/templatetags/activity_tags.py rename to hypha/apply/activity/templatetags/activity_tags.py diff --git a/opentech/apply/activity/tests/__init__.py b/hypha/apply/activity/tests/__init__.py similarity index 100% rename from opentech/apply/activity/tests/__init__.py rename to hypha/apply/activity/tests/__init__.py diff --git a/opentech/apply/activity/tests/factories.py b/hypha/apply/activity/tests/factories.py similarity index 100% rename from opentech/apply/activity/tests/factories.py rename to hypha/apply/activity/tests/factories.py diff --git a/opentech/apply/activity/tests/test_messaging.py b/hypha/apply/activity/tests/test_messaging.py similarity index 100% rename from opentech/apply/activity/tests/test_messaging.py rename to hypha/apply/activity/tests/test_messaging.py diff --git a/opentech/apply/activity/tests/test_models.py b/hypha/apply/activity/tests/test_models.py similarity index 100% rename from opentech/apply/activity/tests/test_models.py rename to hypha/apply/activity/tests/test_models.py diff --git a/opentech/apply/activity/tests/test_tasks.py b/hypha/apply/activity/tests/test_tasks.py similarity index 100% rename from opentech/apply/activity/tests/test_tasks.py rename to hypha/apply/activity/tests/test_tasks.py diff --git a/opentech/apply/activity/urls.py b/hypha/apply/activity/urls.py similarity index 100% rename from opentech/apply/activity/urls.py rename to hypha/apply/activity/urls.py diff --git a/opentech/apply/activity/views.py b/hypha/apply/activity/views.py similarity index 100% rename from opentech/apply/activity/views.py rename to hypha/apply/activity/views.py diff --git a/opentech/apply/api/__init__.py b/hypha/apply/api/__init__.py similarity index 100% rename from opentech/apply/api/__init__.py rename to hypha/apply/api/__init__.py diff --git a/opentech/apply/api/urls.py b/hypha/apply/api/urls.py similarity index 100% rename from opentech/apply/api/urls.py rename to hypha/apply/api/urls.py diff --git a/opentech/apply/api/v1/__init__.py b/hypha/apply/api/v1/__init__.py similarity index 100% rename from opentech/apply/api/v1/__init__.py rename to hypha/apply/api/v1/__init__.py diff --git a/opentech/apply/api/v1/pagination.py b/hypha/apply/api/v1/pagination.py similarity index 100% rename from opentech/apply/api/v1/pagination.py rename to hypha/apply/api/v1/pagination.py diff --git a/opentech/apply/api/v1/permissions.py b/hypha/apply/api/v1/permissions.py similarity index 100% rename from opentech/apply/api/v1/permissions.py rename to hypha/apply/api/v1/permissions.py diff --git a/opentech/apply/api/v1/serializers.py b/hypha/apply/api/v1/serializers.py similarity index 100% rename from opentech/apply/api/v1/serializers.py rename to hypha/apply/api/v1/serializers.py diff --git a/opentech/apply/api/v1/tests/__init__.py b/hypha/apply/api/v1/tests/__init__.py similarity index 100% rename from opentech/apply/api/v1/tests/__init__.py rename to hypha/apply/api/v1/tests/__init__.py diff --git a/opentech/apply/api/v1/tests/test_serializers.py b/hypha/apply/api/v1/tests/test_serializers.py similarity index 100% rename from opentech/apply/api/v1/tests/test_serializers.py rename to hypha/apply/api/v1/tests/test_serializers.py diff --git a/opentech/apply/api/v1/tests/test_views.py b/hypha/apply/api/v1/tests/test_views.py similarity index 100% rename from opentech/apply/api/v1/tests/test_views.py rename to hypha/apply/api/v1/tests/test_views.py diff --git a/opentech/apply/api/v1/urls.py b/hypha/apply/api/v1/urls.py similarity index 100% rename from opentech/apply/api/v1/urls.py rename to hypha/apply/api/v1/urls.py diff --git a/opentech/apply/api/v1/views.py b/hypha/apply/api/v1/views.py similarity index 100% rename from opentech/apply/api/v1/views.py rename to hypha/apply/api/v1/views.py diff --git a/opentech/apply/categories/__init__.py b/hypha/apply/categories/__init__.py similarity index 100% rename from opentech/apply/categories/__init__.py rename to hypha/apply/categories/__init__.py diff --git a/opentech/apply/categories/admin.py b/hypha/apply/categories/admin.py similarity index 100% rename from opentech/apply/categories/admin.py rename to hypha/apply/categories/admin.py diff --git a/opentech/apply/categories/admin_helpers.py b/hypha/apply/categories/admin_helpers.py similarity index 100% rename from opentech/apply/categories/admin_helpers.py rename to hypha/apply/categories/admin_helpers.py diff --git a/opentech/apply/categories/admin_views.py b/hypha/apply/categories/admin_views.py similarity index 100% rename from opentech/apply/categories/admin_views.py rename to hypha/apply/categories/admin_views.py diff --git a/opentech/apply/categories/apps.py b/hypha/apply/categories/apps.py similarity index 100% rename from opentech/apply/categories/apps.py rename to hypha/apply/categories/apps.py diff --git a/opentech/apply/categories/blocks.py b/hypha/apply/categories/blocks.py similarity index 100% rename from opentech/apply/categories/blocks.py rename to hypha/apply/categories/blocks.py diff --git a/opentech/apply/categories/categories_seed.py b/hypha/apply/categories/categories_seed.py similarity index 100% rename from opentech/apply/categories/categories_seed.py rename to hypha/apply/categories/categories_seed.py diff --git a/opentech/apply/categories/management/__init__.py b/hypha/apply/categories/management/__init__.py similarity index 100% rename from opentech/apply/categories/management/__init__.py rename to hypha/apply/categories/management/__init__.py diff --git a/opentech/apply/categories/management/commands/__init__.py b/hypha/apply/categories/management/commands/__init__.py similarity index 100% rename from opentech/apply/categories/management/commands/__init__.py rename to hypha/apply/categories/management/commands/__init__.py diff --git a/opentech/apply/categories/management/commands/seed_categories.py b/hypha/apply/categories/management/commands/seed_categories.py similarity index 100% rename from opentech/apply/categories/management/commands/seed_categories.py rename to hypha/apply/categories/management/commands/seed_categories.py diff --git a/opentech/apply/categories/migrations/0001_initial.py b/hypha/apply/categories/migrations/0001_initial.py similarity index 100% rename from opentech/apply/categories/migrations/0001_initial.py rename to hypha/apply/categories/migrations/0001_initial.py diff --git a/opentech/apply/categories/migrations/0002_metacategory.py b/hypha/apply/categories/migrations/0002_metacategory.py similarity index 100% rename from opentech/apply/categories/migrations/0002_metacategory.py rename to hypha/apply/categories/migrations/0002_metacategory.py diff --git a/opentech/apply/categories/migrations/0003_rename_meta_categories_to_meta_terms.py b/hypha/apply/categories/migrations/0003_rename_meta_categories_to_meta_terms.py similarity index 100% rename from opentech/apply/categories/migrations/0003_rename_meta_categories_to_meta_terms.py rename to hypha/apply/categories/migrations/0003_rename_meta_categories_to_meta_terms.py diff --git a/opentech/apply/categories/migrations/0004_rename_meta_categories_to_meta_terms.py b/hypha/apply/categories/migrations/0004_rename_meta_categories_to_meta_terms.py similarity index 100% rename from opentech/apply/categories/migrations/0004_rename_meta_categories_to_meta_terms.py rename to hypha/apply/categories/migrations/0004_rename_meta_categories_to_meta_terms.py diff --git a/opentech/apply/categories/migrations/0005_alter_is_archived_field_on_terms.py b/hypha/apply/categories/migrations/0005_alter_is_archived_field_on_terms.py similarity index 100% rename from opentech/apply/categories/migrations/0005_alter_is_archived_field_on_terms.py rename to hypha/apply/categories/migrations/0005_alter_is_archived_field_on_terms.py diff --git a/opentech/apply/categories/migrations/__init__.py b/hypha/apply/categories/migrations/__init__.py similarity index 100% rename from opentech/apply/categories/migrations/__init__.py rename to hypha/apply/categories/migrations/__init__.py diff --git a/opentech/apply/categories/models.py b/hypha/apply/categories/models.py similarity index 100% rename from opentech/apply/categories/models.py rename to hypha/apply/categories/models.py diff --git a/opentech/apply/categories/templates/categories/admin/includes/meta_term_list_header.html b/hypha/apply/categories/templates/categories/admin/includes/meta_term_list_header.html similarity index 100% rename from opentech/apply/categories/templates/categories/admin/includes/meta_term_list_header.html rename to hypha/apply/categories/templates/categories/admin/includes/meta_term_list_header.html diff --git a/opentech/apply/categories/tests/__init__.py b/hypha/apply/categories/tests/__init__.py similarity index 100% rename from opentech/apply/categories/tests/__init__.py rename to hypha/apply/categories/tests/__init__.py diff --git a/opentech/apply/categories/tests/factories.py b/hypha/apply/categories/tests/factories.py similarity index 100% rename from opentech/apply/categories/tests/factories.py rename to hypha/apply/categories/tests/factories.py diff --git a/opentech/apply/categories/tests/test_blocks.py b/hypha/apply/categories/tests/test_blocks.py similarity index 100% rename from opentech/apply/categories/tests/test_blocks.py rename to hypha/apply/categories/tests/test_blocks.py diff --git a/opentech/apply/categories/views.py b/hypha/apply/categories/views.py similarity index 100% rename from opentech/apply/categories/views.py rename to hypha/apply/categories/views.py diff --git a/opentech/apply/dashboard/__init__.py b/hypha/apply/dashboard/__init__.py similarity index 100% rename from opentech/apply/dashboard/__init__.py rename to hypha/apply/dashboard/__init__.py diff --git a/opentech/apply/dashboard/apps.py b/hypha/apply/dashboard/apps.py similarity index 100% rename from opentech/apply/dashboard/apps.py rename to hypha/apply/dashboard/apps.py diff --git a/opentech/apply/dashboard/migrations/__init__.py b/hypha/apply/dashboard/migrations/__init__.py similarity index 100% rename from opentech/apply/dashboard/migrations/__init__.py rename to hypha/apply/dashboard/migrations/__init__.py diff --git a/opentech/apply/dashboard/models.py b/hypha/apply/dashboard/models.py similarity index 100% rename from opentech/apply/dashboard/models.py rename to hypha/apply/dashboard/models.py diff --git a/opentech/apply/dashboard/static/js/django_select2-checkboxes.js b/hypha/apply/dashboard/static/js/django_select2-checkboxes.js similarity index 100% rename from opentech/apply/dashboard/static/js/django_select2-checkboxes.js rename to hypha/apply/dashboard/static/js/django_select2-checkboxes.js diff --git a/opentech/apply/dashboard/static/js/select2.multi-checkboxes.js b/hypha/apply/dashboard/static/js/select2.multi-checkboxes.js similarity index 100% rename from opentech/apply/dashboard/static/js/select2.multi-checkboxes.js rename to hypha/apply/dashboard/static/js/select2.multi-checkboxes.js diff --git a/opentech/apply/dashboard/templates/dashboard/applicant_dashboard.html b/hypha/apply/dashboard/templates/dashboard/applicant_dashboard.html similarity index 100% rename from opentech/apply/dashboard/templates/dashboard/applicant_dashboard.html rename to hypha/apply/dashboard/templates/dashboard/applicant_dashboard.html diff --git a/opentech/apply/dashboard/templates/dashboard/community_dashboard.html b/hypha/apply/dashboard/templates/dashboard/community_dashboard.html similarity index 100% rename from opentech/apply/dashboard/templates/dashboard/community_dashboard.html rename to hypha/apply/dashboard/templates/dashboard/community_dashboard.html diff --git a/opentech/apply/dashboard/templates/dashboard/dashboard.html b/hypha/apply/dashboard/templates/dashboard/dashboard.html similarity index 100% rename from opentech/apply/dashboard/templates/dashboard/dashboard.html rename to hypha/apply/dashboard/templates/dashboard/dashboard.html diff --git a/opentech/apply/dashboard/templates/dashboard/includes/flagged.html b/hypha/apply/dashboard/templates/dashboard/includes/flagged.html similarity index 100% rename from opentech/apply/dashboard/templates/dashboard/includes/flagged.html rename to hypha/apply/dashboard/templates/dashboard/includes/flagged.html diff --git a/opentech/apply/dashboard/templates/dashboard/includes/waiting-for-review.html b/hypha/apply/dashboard/templates/dashboard/includes/waiting-for-review.html similarity index 100% rename from opentech/apply/dashboard/templates/dashboard/includes/waiting-for-review.html rename to hypha/apply/dashboard/templates/dashboard/includes/waiting-for-review.html diff --git a/opentech/apply/dashboard/templates/dashboard/partner_dashboard.html b/hypha/apply/dashboard/templates/dashboard/partner_dashboard.html similarity index 100% rename from opentech/apply/dashboard/templates/dashboard/partner_dashboard.html rename to hypha/apply/dashboard/templates/dashboard/partner_dashboard.html diff --git a/opentech/apply/dashboard/templates/dashboard/reviewer_dashboard.html b/hypha/apply/dashboard/templates/dashboard/reviewer_dashboard.html similarity index 100% rename from opentech/apply/dashboard/templates/dashboard/reviewer_dashboard.html rename to hypha/apply/dashboard/templates/dashboard/reviewer_dashboard.html diff --git a/opentech/apply/dashboard/tests/__init__.py b/hypha/apply/dashboard/tests/__init__.py similarity index 100% rename from opentech/apply/dashboard/tests/__init__.py rename to hypha/apply/dashboard/tests/__init__.py diff --git a/opentech/apply/dashboard/tests/test_views.py b/hypha/apply/dashboard/tests/test_views.py similarity index 100% rename from opentech/apply/dashboard/tests/test_views.py rename to hypha/apply/dashboard/tests/test_views.py diff --git a/opentech/apply/dashboard/urls.py b/hypha/apply/dashboard/urls.py similarity index 100% rename from opentech/apply/dashboard/urls.py rename to hypha/apply/dashboard/urls.py diff --git a/opentech/apply/dashboard/views.py b/hypha/apply/dashboard/views.py similarity index 100% rename from opentech/apply/dashboard/views.py rename to hypha/apply/dashboard/views.py diff --git a/opentech/apply/dashboard/wagtail_hooks.py b/hypha/apply/dashboard/wagtail_hooks.py similarity index 100% rename from opentech/apply/dashboard/wagtail_hooks.py rename to hypha/apply/dashboard/wagtail_hooks.py diff --git a/opentech/apply/determinations/__init__.py b/hypha/apply/determinations/__init__.py similarity index 100% rename from opentech/apply/determinations/__init__.py rename to hypha/apply/determinations/__init__.py diff --git a/opentech/apply/determinations/apps.py b/hypha/apply/determinations/apps.py similarity index 100% rename from opentech/apply/determinations/apps.py rename to hypha/apply/determinations/apps.py diff --git a/opentech/apply/determinations/forms.py b/hypha/apply/determinations/forms.py similarity index 100% rename from opentech/apply/determinations/forms.py rename to hypha/apply/determinations/forms.py diff --git a/opentech/apply/determinations/management/__init__.py b/hypha/apply/determinations/management/__init__.py similarity index 100% rename from opentech/apply/determinations/management/__init__.py rename to hypha/apply/determinations/management/__init__.py diff --git a/opentech/apply/determinations/management/commands/__init__.py b/hypha/apply/determinations/management/commands/__init__.py similarity index 100% rename from opentech/apply/determinations/management/commands/__init__.py rename to hypha/apply/determinations/management/commands/__init__.py diff --git a/opentech/apply/determinations/management/commands/migrate_concept_determinations.py b/hypha/apply/determinations/management/commands/migrate_concept_determinations.py similarity index 100% rename from opentech/apply/determinations/management/commands/migrate_concept_determinations.py rename to hypha/apply/determinations/management/commands/migrate_concept_determinations.py diff --git a/opentech/apply/determinations/management/commands/migrate_proposal_determinations.py b/hypha/apply/determinations/management/commands/migrate_proposal_determinations.py similarity index 100% rename from opentech/apply/determinations/management/commands/migrate_proposal_determinations.py rename to hypha/apply/determinations/management/commands/migrate_proposal_determinations.py diff --git a/opentech/apply/determinations/migrations/0001_initial.py b/hypha/apply/determinations/migrations/0001_initial.py similarity index 100% rename from opentech/apply/determinations/migrations/0001_initial.py rename to hypha/apply/determinations/migrations/0001_initial.py diff --git a/opentech/apply/determinations/migrations/0002_add_fields.py b/hypha/apply/determinations/migrations/0002_add_fields.py similarity index 100% rename from opentech/apply/determinations/migrations/0002_add_fields.py rename to hypha/apply/determinations/migrations/0002_add_fields.py diff --git a/opentech/apply/determinations/migrations/0003_message_template_settings.py b/hypha/apply/determinations/migrations/0003_message_template_settings.py similarity index 100% rename from opentech/apply/determinations/migrations/0003_message_template_settings.py rename to hypha/apply/determinations/migrations/0003_message_template_settings.py diff --git a/opentech/apply/determinations/migrations/0004_change_labels.py b/hypha/apply/determinations/migrations/0004_change_labels.py similarity index 100% rename from opentech/apply/determinations/migrations/0004_change_labels.py rename to hypha/apply/determinations/migrations/0004_change_labels.py diff --git a/opentech/apply/determinations/migrations/0005_determination_drupal_id.py b/hypha/apply/determinations/migrations/0005_determination_drupal_id.py similarity index 100% rename from opentech/apply/determinations/migrations/0005_determination_drupal_id.py rename to hypha/apply/determinations/migrations/0005_determination_drupal_id.py diff --git a/opentech/apply/determinations/migrations/0006_allow_multiple_determinations.py b/hypha/apply/determinations/migrations/0006_allow_multiple_determinations.py similarity index 100% rename from opentech/apply/determinations/migrations/0006_allow_multiple_determinations.py rename to hypha/apply/determinations/migrations/0006_allow_multiple_determinations.py diff --git a/opentech/apply/determinations/migrations/0007_add_determinationformsettings.py b/hypha/apply/determinations/migrations/0007_add_determinationformsettings.py similarity index 100% rename from opentech/apply/determinations/migrations/0007_add_determinationformsettings.py rename to hypha/apply/determinations/migrations/0007_add_determinationformsettings.py diff --git a/opentech/apply/determinations/migrations/0008_rename_more_info.py b/hypha/apply/determinations/migrations/0008_rename_more_info.py similarity index 100% rename from opentech/apply/determinations/migrations/0008_rename_more_info.py rename to hypha/apply/determinations/migrations/0008_rename_more_info.py diff --git a/opentech/apply/determinations/migrations/__init__.py b/hypha/apply/determinations/migrations/__init__.py similarity index 100% rename from opentech/apply/determinations/migrations/__init__.py rename to hypha/apply/determinations/migrations/__init__.py diff --git a/opentech/apply/determinations/models.py b/hypha/apply/determinations/models.py similarity index 100% rename from opentech/apply/determinations/models.py rename to hypha/apply/determinations/models.py diff --git a/opentech/apply/determinations/templates/determinations/base_determination_form.html b/hypha/apply/determinations/templates/determinations/base_determination_form.html similarity index 100% rename from opentech/apply/determinations/templates/determinations/base_determination_form.html rename to hypha/apply/determinations/templates/determinations/base_determination_form.html diff --git a/opentech/apply/determinations/templates/determinations/batch_determination_form.html b/hypha/apply/determinations/templates/determinations/batch_determination_form.html similarity index 100% rename from opentech/apply/determinations/templates/determinations/batch_determination_form.html rename to hypha/apply/determinations/templates/determinations/batch_determination_form.html diff --git a/opentech/apply/determinations/templates/determinations/determination_detail.html b/hypha/apply/determinations/templates/determinations/determination_detail.html similarity index 100% rename from opentech/apply/determinations/templates/determinations/determination_detail.html rename to hypha/apply/determinations/templates/determinations/determination_detail.html diff --git a/opentech/apply/determinations/templates/determinations/determination_form.html b/hypha/apply/determinations/templates/determinations/determination_form.html similarity index 100% rename from opentech/apply/determinations/templates/determinations/determination_form.html rename to hypha/apply/determinations/templates/determinations/determination_form.html diff --git a/opentech/apply/determinations/templates/determinations/includes/applicant_determination_block.html b/hypha/apply/determinations/templates/determinations/includes/applicant_determination_block.html similarity index 100% rename from opentech/apply/determinations/templates/determinations/includes/applicant_determination_block.html rename to hypha/apply/determinations/templates/determinations/includes/applicant_determination_block.html diff --git a/opentech/apply/determinations/templates/determinations/includes/batch_determination_confirmation.html b/hypha/apply/determinations/templates/determinations/includes/batch_determination_confirmation.html similarity index 100% rename from opentech/apply/determinations/templates/determinations/includes/batch_determination_confirmation.html rename to hypha/apply/determinations/templates/determinations/includes/batch_determination_confirmation.html diff --git a/opentech/apply/determinations/templates/determinations/includes/determination_block.html b/hypha/apply/determinations/templates/determinations/includes/determination_block.html similarity index 100% rename from opentech/apply/determinations/templates/determinations/includes/determination_block.html rename to hypha/apply/determinations/templates/determinations/includes/determination_block.html diff --git a/opentech/apply/determinations/templates/determinations/includes/determination_button.html b/hypha/apply/determinations/templates/determinations/includes/determination_button.html similarity index 100% rename from opentech/apply/determinations/templates/determinations/includes/determination_button.html rename to hypha/apply/determinations/templates/determinations/includes/determination_button.html diff --git a/opentech/apply/determinations/templatetags/__init__.py b/hypha/apply/determinations/templatetags/__init__.py similarity index 100% rename from opentech/apply/determinations/templatetags/__init__.py rename to hypha/apply/determinations/templatetags/__init__.py diff --git a/opentech/apply/determinations/templatetags/determination_tags.py b/hypha/apply/determinations/templatetags/determination_tags.py similarity index 100% rename from opentech/apply/determinations/templatetags/determination_tags.py rename to hypha/apply/determinations/templatetags/determination_tags.py diff --git a/opentech/apply/determinations/tests/__init__.py b/hypha/apply/determinations/tests/__init__.py similarity index 100% rename from opentech/apply/determinations/tests/__init__.py rename to hypha/apply/determinations/tests/__init__.py diff --git a/opentech/apply/determinations/tests/factories.py b/hypha/apply/determinations/tests/factories.py similarity index 100% rename from opentech/apply/determinations/tests/factories.py rename to hypha/apply/determinations/tests/factories.py diff --git a/opentech/apply/determinations/tests/test_views.py b/hypha/apply/determinations/tests/test_views.py similarity index 100% rename from opentech/apply/determinations/tests/test_views.py rename to hypha/apply/determinations/tests/test_views.py diff --git a/opentech/apply/determinations/urls.py b/hypha/apply/determinations/urls.py similarity index 100% rename from opentech/apply/determinations/urls.py rename to hypha/apply/determinations/urls.py diff --git a/opentech/apply/determinations/utils.py b/hypha/apply/determinations/utils.py similarity index 100% rename from opentech/apply/determinations/utils.py rename to hypha/apply/determinations/utils.py diff --git a/opentech/apply/determinations/views.py b/hypha/apply/determinations/views.py similarity index 100% rename from opentech/apply/determinations/views.py rename to hypha/apply/determinations/views.py diff --git a/opentech/apply/flags/__init__.py b/hypha/apply/flags/__init__.py similarity index 100% rename from opentech/apply/flags/__init__.py rename to hypha/apply/flags/__init__.py diff --git a/opentech/apply/flags/migrations/0001_initial.py b/hypha/apply/flags/migrations/0001_initial.py similarity index 100% rename from opentech/apply/flags/migrations/0001_initial.py rename to hypha/apply/flags/migrations/0001_initial.py diff --git a/opentech/apply/flags/migrations/__init__.py b/hypha/apply/flags/migrations/__init__.py similarity index 100% rename from opentech/apply/flags/migrations/__init__.py rename to hypha/apply/flags/migrations/__init__.py diff --git a/opentech/apply/flags/models.py b/hypha/apply/flags/models.py similarity index 100% rename from opentech/apply/flags/models.py rename to hypha/apply/flags/models.py diff --git a/opentech/apply/flags/templates/flags/flags.html b/hypha/apply/flags/templates/flags/flags.html similarity index 100% rename from opentech/apply/flags/templates/flags/flags.html rename to hypha/apply/flags/templates/flags/flags.html diff --git a/opentech/apply/flags/templatetags/__init__.py b/hypha/apply/flags/templatetags/__init__.py similarity index 100% rename from opentech/apply/flags/templatetags/__init__.py rename to hypha/apply/flags/templatetags/__init__.py diff --git a/opentech/apply/flags/templatetags/flag_tags.py b/hypha/apply/flags/templatetags/flag_tags.py similarity index 100% rename from opentech/apply/flags/templatetags/flag_tags.py rename to hypha/apply/flags/templatetags/flag_tags.py diff --git a/opentech/apply/flags/urls.py b/hypha/apply/flags/urls.py similarity index 100% rename from opentech/apply/flags/urls.py rename to hypha/apply/flags/urls.py diff --git a/opentech/apply/flags/views.py b/hypha/apply/flags/views.py similarity index 100% rename from opentech/apply/flags/views.py rename to hypha/apply/flags/views.py diff --git a/opentech/apply/funds/__init__.py b/hypha/apply/funds/__init__.py similarity index 100% rename from opentech/apply/funds/__init__.py rename to hypha/apply/funds/__init__.py diff --git a/opentech/apply/funds/admin.py b/hypha/apply/funds/admin.py similarity index 100% rename from opentech/apply/funds/admin.py rename to hypha/apply/funds/admin.py diff --git a/opentech/apply/funds/admin_forms.py b/hypha/apply/funds/admin_forms.py similarity index 100% rename from opentech/apply/funds/admin_forms.py rename to hypha/apply/funds/admin_forms.py diff --git a/opentech/apply/funds/admin_helpers.py b/hypha/apply/funds/admin_helpers.py similarity index 100% rename from opentech/apply/funds/admin_helpers.py rename to hypha/apply/funds/admin_helpers.py diff --git a/opentech/apply/funds/admin_views.py b/hypha/apply/funds/admin_views.py similarity index 100% rename from opentech/apply/funds/admin_views.py rename to hypha/apply/funds/admin_views.py diff --git a/opentech/apply/funds/apps.py b/hypha/apply/funds/apps.py similarity index 100% rename from opentech/apply/funds/apps.py rename to hypha/apply/funds/apps.py diff --git a/opentech/apply/funds/blocks.py b/hypha/apply/funds/blocks.py similarity index 100% rename from opentech/apply/funds/blocks.py rename to hypha/apply/funds/blocks.py diff --git a/opentech/apply/funds/differ.py b/hypha/apply/funds/differ.py similarity index 100% rename from opentech/apply/funds/differ.py rename to hypha/apply/funds/differ.py diff --git a/opentech/apply/funds/edit_handlers.py b/hypha/apply/funds/edit_handlers.py similarity index 100% rename from opentech/apply/funds/edit_handlers.py rename to hypha/apply/funds/edit_handlers.py diff --git a/opentech/apply/funds/files.py b/hypha/apply/funds/files.py similarity index 100% rename from opentech/apply/funds/files.py rename to hypha/apply/funds/files.py diff --git a/opentech/apply/funds/forms.py b/hypha/apply/funds/forms.py similarity index 100% rename from opentech/apply/funds/forms.py rename to hypha/apply/funds/forms.py diff --git a/opentech/apply/funds/management/__init__.py b/hypha/apply/funds/management/__init__.py similarity index 100% rename from opentech/apply/funds/management/__init__.py rename to hypha/apply/funds/management/__init__.py diff --git a/opentech/apply/funds/management/commands/__init__.py b/hypha/apply/funds/management/commands/__init__.py similarity index 100% rename from opentech/apply/funds/management/commands/__init__.py rename to hypha/apply/funds/management/commands/__init__.py diff --git a/opentech/apply/funds/management/commands/export_submissions_csv.py b/hypha/apply/funds/management/commands/export_submissions_csv.py similarity index 100% rename from opentech/apply/funds/management/commands/export_submissions_csv.py rename to hypha/apply/funds/management/commands/export_submissions_csv.py diff --git a/opentech/apply/funds/management/commands/migrate_community_lab_applications.py b/hypha/apply/funds/management/commands/migrate_community_lab_applications.py similarity index 100% rename from opentech/apply/funds/management/commands/migrate_community_lab_applications.py rename to hypha/apply/funds/management/commands/migrate_community_lab_applications.py diff --git a/opentech/apply/funds/management/commands/migrate_concept_notes.py b/hypha/apply/funds/management/commands/migrate_concept_notes.py similarity index 100% rename from opentech/apply/funds/management/commands/migrate_concept_notes.py rename to hypha/apply/funds/management/commands/migrate_concept_notes.py diff --git a/opentech/apply/funds/management/commands/migrate_concept_notes_502.py b/hypha/apply/funds/management/commands/migrate_concept_notes_502.py similarity index 100% rename from opentech/apply/funds/management/commands/migrate_concept_notes_502.py rename to hypha/apply/funds/management/commands/migrate_concept_notes_502.py diff --git a/opentech/apply/funds/management/commands/migrate_concept_notes_503.py b/hypha/apply/funds/management/commands/migrate_concept_notes_503.py similarity index 100% rename from opentech/apply/funds/management/commands/migrate_concept_notes_503.py rename to hypha/apply/funds/management/commands/migrate_concept_notes_503.py diff --git a/opentech/apply/funds/management/commands/migrate_fellowship_application.py b/hypha/apply/funds/management/commands/migrate_fellowship_application.py similarity index 100% rename from opentech/apply/funds/management/commands/migrate_fellowship_application.py rename to hypha/apply/funds/management/commands/migrate_fellowship_application.py diff --git a/opentech/apply/funds/management/commands/migrate_fellowship_proposals.py b/hypha/apply/funds/management/commands/migrate_fellowship_proposals.py similarity index 100% rename from opentech/apply/funds/management/commands/migrate_fellowship_proposals.py rename to hypha/apply/funds/management/commands/migrate_fellowship_proposals.py diff --git a/opentech/apply/funds/management/commands/migrate_proposals.py b/hypha/apply/funds/management/commands/migrate_proposals.py similarity index 100% rename from opentech/apply/funds/management/commands/migrate_proposals.py rename to hypha/apply/funds/management/commands/migrate_proposals.py diff --git a/opentech/apply/funds/management/commands/migrate_rr_applications.py b/hypha/apply/funds/management/commands/migrate_rr_applications.py similarity index 100% rename from opentech/apply/funds/management/commands/migrate_rr_applications.py rename to hypha/apply/funds/management/commands/migrate_rr_applications.py diff --git a/opentech/apply/funds/management/commands/migration_base.py b/hypha/apply/funds/management/commands/migration_base.py similarity index 100% rename from opentech/apply/funds/management/commands/migration_base.py rename to hypha/apply/funds/management/commands/migration_base.py diff --git a/opentech/apply/funds/management/commands/seed_community_lab_application.py b/hypha/apply/funds/management/commands/seed_community_lab_application.py similarity index 100% rename from opentech/apply/funds/management/commands/seed_community_lab_application.py rename to hypha/apply/funds/management/commands/seed_community_lab_application.py diff --git a/opentech/apply/funds/management/commands/seed_concept_note.py b/hypha/apply/funds/management/commands/seed_concept_note.py similarity index 100% rename from opentech/apply/funds/management/commands/seed_concept_note.py rename to hypha/apply/funds/management/commands/seed_concept_note.py diff --git a/opentech/apply/funds/management/commands/seed_fellowship.py b/hypha/apply/funds/management/commands/seed_fellowship.py similarity index 100% rename from opentech/apply/funds/management/commands/seed_fellowship.py rename to hypha/apply/funds/management/commands/seed_fellowship.py diff --git a/opentech/apply/funds/management/commands/seed_rapid_response.py b/hypha/apply/funds/management/commands/seed_rapid_response.py similarity index 100% rename from opentech/apply/funds/management/commands/seed_rapid_response.py rename to hypha/apply/funds/management/commands/seed_rapid_response.py diff --git a/opentech/apply/funds/migrations/0001_initial.py b/hypha/apply/funds/migrations/0001_initial.py similarity index 100% rename from opentech/apply/funds/migrations/0001_initial.py rename to hypha/apply/funds/migrations/0001_initial.py diff --git a/opentech/apply/funds/migrations/0002_fundpage_workflow.py b/hypha/apply/funds/migrations/0002_fundpage_workflow.py similarity index 100% rename from opentech/apply/funds/migrations/0002_fundpage_workflow.py rename to hypha/apply/funds/migrations/0002_fundpage_workflow.py diff --git a/opentech/apply/funds/migrations/0003_applicationform_category_fundpageform_option.py b/hypha/apply/funds/migrations/0003_applicationform_category_fundpageform_option.py similarity index 100% rename from opentech/apply/funds/migrations/0003_applicationform_category_fundpageform_option.py rename to hypha/apply/funds/migrations/0003_applicationform_category_fundpageform_option.py diff --git a/opentech/apply/funds/migrations/0004_categoryblock_add_required_option.py b/hypha/apply/funds/migrations/0004_categoryblock_add_required_option.py similarity index 100% rename from opentech/apply/funds/migrations/0004_categoryblock_add_required_option.py rename to hypha/apply/funds/migrations/0004_categoryblock_add_required_option.py diff --git a/opentech/apply/funds/migrations/0005_applicationsubmission.py b/hypha/apply/funds/migrations/0005_applicationsubmission.py similarity index 100% rename from opentech/apply/funds/migrations/0005_applicationsubmission.py rename to hypha/apply/funds/migrations/0005_applicationsubmission.py diff --git a/opentech/apply/funds/migrations/0006_update_block_definitions.py b/hypha/apply/funds/migrations/0006_update_block_definitions.py similarity index 100% rename from opentech/apply/funds/migrations/0006_update_block_definitions.py rename to hypha/apply/funds/migrations/0006_update_block_definitions.py diff --git a/opentech/apply/funds/migrations/0007_round.py b/hypha/apply/funds/migrations/0007_round.py similarity index 100% rename from opentech/apply/funds/migrations/0007_round.py rename to hypha/apply/funds/migrations/0007_round.py diff --git a/opentech/apply/funds/migrations/0008_add_date_to_round.py b/hypha/apply/funds/migrations/0008_add_date_to_round.py similarity index 100% rename from opentech/apply/funds/migrations/0008_add_date_to_round.py rename to hypha/apply/funds/migrations/0008_add_date_to_round.py diff --git a/opentech/apply/funds/migrations/0009_update_date_fields.py b/hypha/apply/funds/migrations/0009_update_date_fields.py similarity index 100% rename from opentech/apply/funds/migrations/0009_update_date_fields.py rename to hypha/apply/funds/migrations/0009_update_date_fields.py diff --git a/opentech/apply/funds/migrations/0010_update_for_rich_text_block.py b/hypha/apply/funds/migrations/0010_update_for_rich_text_block.py similarity index 100% rename from opentech/apply/funds/migrations/0010_update_for_rich_text_block.py rename to hypha/apply/funds/migrations/0010_update_for_rich_text_block.py diff --git a/opentech/apply/funds/migrations/0011_update_encoder_add_round_to_submission.py b/hypha/apply/funds/migrations/0011_update_encoder_add_round_to_submission.py similarity index 100% rename from opentech/apply/funds/migrations/0011_update_encoder_add_round_to_submission.py rename to hypha/apply/funds/migrations/0011_update_encoder_add_round_to_submission.py diff --git a/opentech/apply/funds/migrations/0012_create_lab_models.py b/hypha/apply/funds/migrations/0012_create_lab_models.py similarity index 100% rename from opentech/apply/funds/migrations/0012_create_lab_models.py rename to hypha/apply/funds/migrations/0012_create_lab_models.py diff --git a/opentech/apply/funds/migrations/0013_allow_nullable_round_on_submission.py b/hypha/apply/funds/migrations/0013_allow_nullable_round_on_submission.py similarity index 100% rename from opentech/apply/funds/migrations/0013_allow_nullable_round_on_submission.py rename to hypha/apply/funds/migrations/0013_allow_nullable_round_on_submission.py diff --git a/opentech/apply/funds/migrations/0014_add_meta_names.py b/hypha/apply/funds/migrations/0014_add_meta_names.py similarity index 100% rename from opentech/apply/funds/migrations/0014_add_meta_names.py rename to hypha/apply/funds/migrations/0014_add_meta_names.py diff --git a/opentech/apply/funds/migrations/0015_link_user_to_application.py b/hypha/apply/funds/migrations/0015_link_user_to_application.py similarity index 100% rename from opentech/apply/funds/migrations/0015_link_user_to_application.py rename to hypha/apply/funds/migrations/0015_link_user_to_application.py diff --git a/opentech/apply/funds/migrations/0016_roundform.py b/hypha/apply/funds/migrations/0016_roundform.py similarity index 100% rename from opentech/apply/funds/migrations/0016_roundform.py rename to hypha/apply/funds/migrations/0016_roundform.py diff --git a/opentech/apply/funds/migrations/0017_round_workflow.py b/hypha/apply/funds/migrations/0017_round_workflow.py similarity index 100% rename from opentech/apply/funds/migrations/0017_round_workflow.py rename to hypha/apply/funds/migrations/0017_round_workflow.py diff --git a/opentech/apply/funds/migrations/0018_add_addressfield.py b/hypha/apply/funds/migrations/0018_add_addressfield.py similarity index 100% rename from opentech/apply/funds/migrations/0018_add_addressfield.py rename to hypha/apply/funds/migrations/0018_add_addressfield.py diff --git a/opentech/apply/funds/migrations/0019_protect_submission.py b/hypha/apply/funds/migrations/0019_protect_submission.py similarity index 100% rename from opentech/apply/funds/migrations/0019_protect_submission.py rename to hypha/apply/funds/migrations/0019_protect_submission.py diff --git a/opentech/apply/funds/migrations/0020_add_workflow_and_status_to_submission.py b/hypha/apply/funds/migrations/0020_add_workflow_and_status_to_submission.py similarity index 100% rename from opentech/apply/funds/migrations/0020_add_workflow_and_status_to_submission.py rename to hypha/apply/funds/migrations/0020_add_workflow_and_status_to_submission.py diff --git a/opentech/apply/funds/migrations/0021_rename_workflow_field.py b/hypha/apply/funds/migrations/0021_rename_workflow_field.py similarity index 100% rename from opentech/apply/funds/migrations/0021_rename_workflow_field.py rename to hypha/apply/funds/migrations/0021_rename_workflow_field.py diff --git a/opentech/apply/funds/migrations/0022_applicationsubmission_form_fields.py b/hypha/apply/funds/migrations/0022_applicationsubmission_form_fields.py similarity index 100% rename from opentech/apply/funds/migrations/0022_applicationsubmission_form_fields.py rename to hypha/apply/funds/migrations/0022_applicationsubmission_form_fields.py diff --git a/opentech/apply/funds/migrations/0023_round_lead.py b/hypha/apply/funds/migrations/0023_round_lead.py similarity index 100% rename from opentech/apply/funds/migrations/0023_round_lead.py rename to hypha/apply/funds/migrations/0023_round_lead.py diff --git a/opentech/apply/funds/migrations/0024_applicationsubmission_search_data.py b/hypha/apply/funds/migrations/0024_applicationsubmission_search_data.py similarity index 100% rename from opentech/apply/funds/migrations/0024_applicationsubmission_search_data.py rename to hypha/apply/funds/migrations/0024_applicationsubmission_search_data.py diff --git a/opentech/apply/funds/migrations/0025_update_with_file_blocks.py b/hypha/apply/funds/migrations/0025_update_with_file_blocks.py similarity index 100% rename from opentech/apply/funds/migrations/0025_update_with_file_blocks.py rename to hypha/apply/funds/migrations/0025_update_with_file_blocks.py diff --git a/opentech/apply/funds/migrations/0026_add_leads_to_submission_and_lab.py b/hypha/apply/funds/migrations/0026_add_leads_to_submission_and_lab.py similarity index 100% rename from opentech/apply/funds/migrations/0026_add_leads_to_submission_and_lab.py rename to hypha/apply/funds/migrations/0026_add_leads_to_submission_and_lab.py diff --git a/opentech/apply/funds/migrations/0027_applicationsubmission_drupal_id.py b/hypha/apply/funds/migrations/0027_applicationsubmission_drupal_id.py similarity index 100% rename from opentech/apply/funds/migrations/0027_applicationsubmission_drupal_id.py rename to hypha/apply/funds/migrations/0027_applicationsubmission_drupal_id.py diff --git a/opentech/apply/funds/migrations/0028_update_on_delete_django2.py b/hypha/apply/funds/migrations/0028_update_on_delete_django2.py similarity index 100% rename from opentech/apply/funds/migrations/0028_update_on_delete_django2.py rename to hypha/apply/funds/migrations/0028_update_on_delete_django2.py diff --git a/opentech/apply/funds/migrations/0029_applicationsubmission_next.py b/hypha/apply/funds/migrations/0029_applicationsubmission_next.py similarity index 100% rename from opentech/apply/funds/migrations/0029_applicationsubmission_next.py rename to hypha/apply/funds/migrations/0029_applicationsubmission_next.py diff --git a/opentech/apply/funds/migrations/0030_add_reviewers.py b/hypha/apply/funds/migrations/0030_add_reviewers.py similarity index 100% rename from opentech/apply/funds/migrations/0030_add_reviewers.py rename to hypha/apply/funds/migrations/0030_add_reviewers.py diff --git a/opentech/apply/funds/migrations/0031_labtype_reviewers.py b/hypha/apply/funds/migrations/0031_labtype_reviewers.py similarity index 100% rename from opentech/apply/funds/migrations/0031_labtype_reviewers.py rename to hypha/apply/funds/migrations/0031_labtype_reviewers.py diff --git a/opentech/apply/funds/migrations/0032_make_reviewers_optional_in_all_instances.py b/hypha/apply/funds/migrations/0032_make_reviewers_optional_in_all_instances.py similarity index 100% rename from opentech/apply/funds/migrations/0032_make_reviewers_optional_in_all_instances.py rename to hypha/apply/funds/migrations/0032_make_reviewers_optional_in_all_instances.py diff --git a/opentech/apply/funds/migrations/0033_use_django_fsm.py b/hypha/apply/funds/migrations/0033_use_django_fsm.py similarity index 100% rename from opentech/apply/funds/migrations/0033_use_django_fsm.py rename to hypha/apply/funds/migrations/0033_use_django_fsm.py diff --git a/opentech/apply/funds/migrations/0034_create_revisions_model.py b/hypha/apply/funds/migrations/0034_create_revisions_model.py similarity index 100% rename from opentech/apply/funds/migrations/0034_create_revisions_model.py rename to hypha/apply/funds/migrations/0034_create_revisions_model.py diff --git a/opentech/apply/funds/migrations/0035_author_timestamp_revision.py b/hypha/apply/funds/migrations/0035_author_timestamp_revision.py similarity index 100% rename from opentech/apply/funds/migrations/0035_author_timestamp_revision.py rename to hypha/apply/funds/migrations/0035_author_timestamp_revision.py diff --git a/opentech/apply/funds/migrations/0036_fundreviewform_labreviewform.py b/hypha/apply/funds/migrations/0036_fundreviewform_labreviewform.py similarity index 100% rename from opentech/apply/funds/migrations/0036_fundreviewform_labreviewform.py rename to hypha/apply/funds/migrations/0036_fundreviewform_labreviewform.py diff --git a/opentech/apply/funds/migrations/0037_refactor_funds_models.py b/hypha/apply/funds/migrations/0037_refactor_funds_models.py similarity index 100% rename from opentech/apply/funds/migrations/0037_refactor_funds_models.py rename to hypha/apply/funds/migrations/0037_refactor_funds_models.py diff --git a/opentech/apply/funds/migrations/0038_recreate_objects_that_exist.py b/hypha/apply/funds/migrations/0038_recreate_objects_that_exist.py similarity index 100% rename from opentech/apply/funds/migrations/0038_recreate_objects_that_exist.py rename to hypha/apply/funds/migrations/0038_recreate_objects_that_exist.py diff --git a/opentech/apply/funds/migrations/0039_add_rfps_and_sealed_rounds.py b/hypha/apply/funds/migrations/0039_add_rfps_and_sealed_rounds.py similarity index 100% rename from opentech/apply/funds/migrations/0039_add_rfps_and_sealed_rounds.py rename to hypha/apply/funds/migrations/0039_add_rfps_and_sealed_rounds.py diff --git a/opentech/apply/funds/migrations/0040_add_duration_stream_to_streamfield_definition.py b/hypha/apply/funds/migrations/0040_add_duration_stream_to_streamfield_definition.py similarity index 100% rename from opentech/apply/funds/migrations/0040_add_duration_stream_to_streamfield_definition.py rename to hypha/apply/funds/migrations/0040_add_duration_stream_to_streamfield_definition.py diff --git a/opentech/apply/funds/migrations/0041_roundbasereviewform.py b/hypha/apply/funds/migrations/0041_roundbasereviewform.py similarity index 100% rename from opentech/apply/funds/migrations/0041_roundbasereviewform.py rename to hypha/apply/funds/migrations/0041_roundbasereviewform.py diff --git a/opentech/apply/funds/migrations/0042_update_json_encoder.py b/hypha/apply/funds/migrations/0042_update_json_encoder.py similarity index 100% rename from opentech/apply/funds/migrations/0042_update_json_encoder.py rename to hypha/apply/funds/migrations/0042_update_json_encoder.py diff --git a/opentech/apply/funds/migrations/0043_auto_20180926_0948.py b/hypha/apply/funds/migrations/0043_auto_20180926_0948.py similarity index 100% rename from opentech/apply/funds/migrations/0043_auto_20180926_0948.py rename to hypha/apply/funds/migrations/0043_auto_20180926_0948.py diff --git a/opentech/apply/funds/migrations/0044_add_named_blocks.py b/hypha/apply/funds/migrations/0044_add_named_blocks.py similarity index 100% rename from opentech/apply/funds/migrations/0044_add_named_blocks.py rename to hypha/apply/funds/migrations/0044_add_named_blocks.py diff --git a/opentech/apply/funds/migrations/0045_new_workflow.py b/hypha/apply/funds/migrations/0045_new_workflow.py similarity index 100% rename from opentech/apply/funds/migrations/0045_new_workflow.py rename to hypha/apply/funds/migrations/0045_new_workflow.py diff --git a/opentech/apply/funds/migrations/0046_rename_fields.py b/hypha/apply/funds/migrations/0046_rename_fields.py similarity index 100% rename from opentech/apply/funds/migrations/0046_rename_fields.py rename to hypha/apply/funds/migrations/0046_rename_fields.py diff --git a/opentech/apply/funds/migrations/0047_add_markdown.py b/hypha/apply/funds/migrations/0047_add_markdown.py similarity index 100% rename from opentech/apply/funds/migrations/0047_add_markdown.py rename to hypha/apply/funds/migrations/0047_add_markdown.py diff --git a/opentech/apply/funds/migrations/0048_add_field_slack_channel.py b/hypha/apply/funds/migrations/0048_add_field_slack_channel.py similarity index 100% rename from opentech/apply/funds/migrations/0048_add_field_slack_channel.py rename to hypha/apply/funds/migrations/0048_add_field_slack_channel.py diff --git a/opentech/apply/funds/migrations/0049_screening_status.py b/hypha/apply/funds/migrations/0049_screening_status.py similarity index 100% rename from opentech/apply/funds/migrations/0049_screening_status.py rename to hypha/apply/funds/migrations/0049_screening_status.py diff --git a/opentech/apply/funds/migrations/0050_roundsandlabs.py b/hypha/apply/funds/migrations/0050_roundsandlabs.py similarity index 100% rename from opentech/apply/funds/migrations/0050_roundsandlabs.py rename to hypha/apply/funds/migrations/0050_roundsandlabs.py diff --git a/opentech/apply/funds/migrations/0051_applicationsubmission_partners.py b/hypha/apply/funds/migrations/0051_applicationsubmission_partners.py similarity index 100% rename from opentech/apply/funds/migrations/0051_applicationsubmission_partners.py rename to hypha/apply/funds/migrations/0051_applicationsubmission_partners.py diff --git a/opentech/apply/funds/migrations/0052_reviewerrole.py b/hypha/apply/funds/migrations/0052_reviewerrole.py similarity index 100% rename from opentech/apply/funds/migrations/0052_reviewerrole.py rename to hypha/apply/funds/migrations/0052_reviewerrole.py diff --git a/opentech/apply/funds/migrations/0053_assigned_reviewers_pre.py b/hypha/apply/funds/migrations/0053_assigned_reviewers_pre.py similarity index 100% rename from opentech/apply/funds/migrations/0053_assigned_reviewers_pre.py rename to hypha/apply/funds/migrations/0053_assigned_reviewers_pre.py diff --git a/opentech/apply/funds/migrations/0054_move_reviewer_data.py b/hypha/apply/funds/migrations/0054_move_reviewer_data.py similarity index 100% rename from opentech/apply/funds/migrations/0054_move_reviewer_data.py rename to hypha/apply/funds/migrations/0054_move_reviewer_data.py diff --git a/opentech/apply/funds/migrations/0055_remove_applicationsubmission_reviewers.py b/hypha/apply/funds/migrations/0055_remove_applicationsubmission_reviewers.py similarity index 100% rename from opentech/apply/funds/migrations/0055_remove_applicationsubmission_reviewers.py rename to hypha/apply/funds/migrations/0055_remove_applicationsubmission_reviewers.py diff --git a/opentech/apply/funds/migrations/0056_reviewers_rename.py b/hypha/apply/funds/migrations/0056_reviewers_rename.py similarity index 100% rename from opentech/apply/funds/migrations/0056_reviewers_rename.py rename to hypha/apply/funds/migrations/0056_reviewers_rename.py diff --git a/opentech/apply/funds/migrations/0057_start_date_blank_null_roundbase.py b/hypha/apply/funds/migrations/0057_start_date_blank_null_roundbase.py similarity index 100% rename from opentech/apply/funds/migrations/0057_start_date_blank_null_roundbase.py rename to hypha/apply/funds/migrations/0057_start_date_blank_null_roundbase.py diff --git a/opentech/apply/funds/migrations/0058_add_group_toggle.py b/hypha/apply/funds/migrations/0058_add_group_toggle.py similarity index 100% rename from opentech/apply/funds/migrations/0058_add_group_toggle.py rename to hypha/apply/funds/migrations/0058_add_group_toggle.py diff --git a/opentech/apply/funds/migrations/0059_add_community_review_workflow.py b/hypha/apply/funds/migrations/0059_add_community_review_workflow.py similarity index 100% rename from opentech/apply/funds/migrations/0059_add_community_review_workflow.py rename to hypha/apply/funds/migrations/0059_add_community_review_workflow.py diff --git a/opentech/apply/funds/migrations/0060_add_duration_type_in_duration_block.py b/hypha/apply/funds/migrations/0060_add_duration_type_in_duration_block.py similarity index 100% rename from opentech/apply/funds/migrations/0060_add_duration_type_in_duration_block.py rename to hypha/apply/funds/migrations/0060_add_duration_type_in_duration_block.py diff --git a/opentech/apply/funds/migrations/0061_prepare_assigned_reviewers_for_data_migration.py b/hypha/apply/funds/migrations/0061_prepare_assigned_reviewers_for_data_migration.py similarity index 100% rename from opentech/apply/funds/migrations/0061_prepare_assigned_reviewers_for_data_migration.py rename to hypha/apply/funds/migrations/0061_prepare_assigned_reviewers_for_data_migration.py diff --git a/opentech/apply/funds/migrations/0062_data_migrate_type_for_assigned_reviewers.py b/hypha/apply/funds/migrations/0062_data_migrate_type_for_assigned_reviewers.py similarity index 100% rename from opentech/apply/funds/migrations/0062_data_migrate_type_for_assigned_reviewers.py rename to hypha/apply/funds/migrations/0062_data_migrate_type_for_assigned_reviewers.py diff --git a/opentech/apply/funds/migrations/0063_make_reviewer_type_required.py b/hypha/apply/funds/migrations/0063_make_reviewer_type_required.py similarity index 100% rename from opentech/apply/funds/migrations/0063_make_reviewer_type_required.py rename to hypha/apply/funds/migrations/0063_make_reviewer_type_required.py diff --git a/opentech/apply/funds/migrations/0064_group_toggle_end_block.py b/hypha/apply/funds/migrations/0064_group_toggle_end_block.py similarity index 100% rename from opentech/apply/funds/migrations/0064_group_toggle_end_block.py rename to hypha/apply/funds/migrations/0064_group_toggle_end_block.py diff --git a/opentech/apply/funds/migrations/0065_applicationsubmission_meta_categories.py b/hypha/apply/funds/migrations/0065_applicationsubmission_meta_categories.py similarity index 100% rename from opentech/apply/funds/migrations/0065_applicationsubmission_meta_categories.py rename to hypha/apply/funds/migrations/0065_applicationsubmission_meta_categories.py diff --git a/opentech/apply/funds/migrations/0066_add_stage_to_selected_forms.py b/hypha/apply/funds/migrations/0066_add_stage_to_selected_forms.py similarity index 100% rename from opentech/apply/funds/migrations/0066_add_stage_to_selected_forms.py rename to hypha/apply/funds/migrations/0066_add_stage_to_selected_forms.py diff --git a/opentech/apply/funds/migrations/0067_data_migration_for_one_form_per_stage.py b/hypha/apply/funds/migrations/0067_data_migration_for_one_form_per_stage.py similarity index 100% rename from opentech/apply/funds/migrations/0067_data_migration_for_one_form_per_stage.py rename to hypha/apply/funds/migrations/0067_data_migration_for_one_form_per_stage.py diff --git a/opentech/apply/funds/migrations/0068_add_help_link_field.py b/hypha/apply/funds/migrations/0068_add_help_link_field.py similarity index 100% rename from opentech/apply/funds/migrations/0068_add_help_link_field.py rename to hypha/apply/funds/migrations/0068_add_help_link_field.py diff --git a/opentech/apply/funds/migrations/0068_link_funds_and_labs_to_paf.py b/hypha/apply/funds/migrations/0068_link_funds_and_labs_to_paf.py similarity index 100% rename from opentech/apply/funds/migrations/0068_link_funds_and_labs_to_paf.py rename to hypha/apply/funds/migrations/0068_link_funds_and_labs_to_paf.py diff --git a/opentech/apply/funds/migrations/0069_merge_20190905_0403.py b/hypha/apply/funds/migrations/0069_merge_20190905_0403.py similarity index 100% rename from opentech/apply/funds/migrations/0069_merge_20190905_0403.py rename to hypha/apply/funds/migrations/0069_merge_20190905_0403.py diff --git a/opentech/apply/funds/migrations/0070_rename_meta_categories_to_meta_terms.py b/hypha/apply/funds/migrations/0070_rename_meta_categories_to_meta_terms.py similarity index 100% rename from opentech/apply/funds/migrations/0070_rename_meta_categories_to_meta_terms.py rename to hypha/apply/funds/migrations/0070_rename_meta_categories_to_meta_terms.py diff --git a/opentech/apply/funds/migrations/0071_update_field_reviewer.py b/hypha/apply/funds/migrations/0071_update_field_reviewer.py similarity index 100% rename from opentech/apply/funds/migrations/0071_update_field_reviewer.py rename to hypha/apply/funds/migrations/0071_update_field_reviewer.py diff --git a/opentech/apply/funds/migrations/__init__.py b/hypha/apply/funds/migrations/__init__.py similarity index 100% rename from opentech/apply/funds/migrations/__init__.py rename to hypha/apply/funds/migrations/__init__.py diff --git a/opentech/apply/funds/models/__init__.py b/hypha/apply/funds/models/__init__.py similarity index 100% rename from opentech/apply/funds/models/__init__.py rename to hypha/apply/funds/models/__init__.py diff --git a/opentech/apply/funds/models/applications.py b/hypha/apply/funds/models/applications.py similarity index 100% rename from opentech/apply/funds/models/applications.py rename to hypha/apply/funds/models/applications.py diff --git a/opentech/apply/funds/models/forms.py b/hypha/apply/funds/models/forms.py similarity index 100% rename from opentech/apply/funds/models/forms.py rename to hypha/apply/funds/models/forms.py diff --git a/opentech/apply/funds/models/mixins.py b/hypha/apply/funds/models/mixins.py similarity index 100% rename from opentech/apply/funds/models/mixins.py rename to hypha/apply/funds/models/mixins.py diff --git a/opentech/apply/funds/models/reviewer_role.py b/hypha/apply/funds/models/reviewer_role.py similarity index 100% rename from opentech/apply/funds/models/reviewer_role.py rename to hypha/apply/funds/models/reviewer_role.py diff --git a/opentech/apply/funds/models/screening.py b/hypha/apply/funds/models/screening.py similarity index 100% rename from opentech/apply/funds/models/screening.py rename to hypha/apply/funds/models/screening.py diff --git a/opentech/apply/funds/models/submissions.py b/hypha/apply/funds/models/submissions.py similarity index 100% rename from opentech/apply/funds/models/submissions.py rename to hypha/apply/funds/models/submissions.py diff --git a/opentech/apply/funds/models/utils.py b/hypha/apply/funds/models/utils.py similarity index 100% rename from opentech/apply/funds/models/utils.py rename to hypha/apply/funds/models/utils.py diff --git a/opentech/apply/funds/paginators.py b/hypha/apply/funds/paginators.py similarity index 100% rename from opentech/apply/funds/paginators.py rename to hypha/apply/funds/paginators.py diff --git a/opentech/apply/funds/permissions.py b/hypha/apply/funds/permissions.py similarity index 100% rename from opentech/apply/funds/permissions.py rename to hypha/apply/funds/permissions.py diff --git a/opentech/apply/funds/tables.py b/hypha/apply/funds/tables.py similarity index 100% rename from opentech/apply/funds/tables.py rename to hypha/apply/funds/tables.py diff --git a/opentech/apply/funds/templates/funds/admin/parent_chooser.html b/hypha/apply/funds/templates/funds/admin/parent_chooser.html similarity index 100% rename from opentech/apply/funds/templates/funds/admin/parent_chooser.html rename to hypha/apply/funds/templates/funds/admin/parent_chooser.html diff --git a/opentech/apply/funds/templates/funds/admin/widgets/read_only.html b/hypha/apply/funds/templates/funds/admin/widgets/read_only.html similarity index 100% rename from opentech/apply/funds/templates/funds/admin/widgets/read_only.html rename to hypha/apply/funds/templates/funds/admin/widgets/read_only.html diff --git a/opentech/apply/funds/templates/funds/application_base.html b/hypha/apply/funds/templates/funds/application_base.html similarity index 100% rename from opentech/apply/funds/templates/funds/application_base.html rename to hypha/apply/funds/templates/funds/application_base.html diff --git a/opentech/apply/funds/templates/funds/application_base_landing.html b/hypha/apply/funds/templates/funds/application_base_landing.html similarity index 100% rename from opentech/apply/funds/templates/funds/application_base_landing.html rename to hypha/apply/funds/templates/funds/application_base_landing.html diff --git a/opentech/apply/funds/templates/funds/applicationrevision_list.html b/hypha/apply/funds/templates/funds/applicationrevision_list.html similarity index 100% rename from opentech/apply/funds/templates/funds/applicationrevision_list.html rename to hypha/apply/funds/templates/funds/applicationrevision_list.html diff --git a/opentech/apply/funds/templates/funds/applicationsubmission_admin_detail.html b/hypha/apply/funds/templates/funds/applicationsubmission_admin_detail.html similarity index 100% rename from opentech/apply/funds/templates/funds/applicationsubmission_admin_detail.html rename to hypha/apply/funds/templates/funds/applicationsubmission_admin_detail.html diff --git a/opentech/apply/funds/templates/funds/applicationsubmission_community_detail.html b/hypha/apply/funds/templates/funds/applicationsubmission_community_detail.html similarity index 100% rename from opentech/apply/funds/templates/funds/applicationsubmission_community_detail.html rename to hypha/apply/funds/templates/funds/applicationsubmission_community_detail.html diff --git a/opentech/apply/funds/templates/funds/applicationsubmission_confirm_delete.html b/hypha/apply/funds/templates/funds/applicationsubmission_confirm_delete.html similarity index 100% rename from opentech/apply/funds/templates/funds/applicationsubmission_confirm_delete.html rename to hypha/apply/funds/templates/funds/applicationsubmission_confirm_delete.html diff --git a/opentech/apply/funds/templates/funds/applicationsubmission_detail.html b/hypha/apply/funds/templates/funds/applicationsubmission_detail.html similarity index 100% rename from opentech/apply/funds/templates/funds/applicationsubmission_detail.html rename to hypha/apply/funds/templates/funds/applicationsubmission_detail.html diff --git a/opentech/apply/funds/templates/funds/applicationsubmission_form.html b/hypha/apply/funds/templates/funds/applicationsubmission_form.html similarity index 100% rename from opentech/apply/funds/templates/funds/applicationsubmission_form.html rename to hypha/apply/funds/templates/funds/applicationsubmission_form.html diff --git a/opentech/apply/funds/templates/funds/applicationsubmission_reviewer_detail.html b/hypha/apply/funds/templates/funds/applicationsubmission_reviewer_detail.html similarity index 100% rename from opentech/apply/funds/templates/funds/applicationsubmission_reviewer_detail.html rename to hypha/apply/funds/templates/funds/applicationsubmission_reviewer_detail.html diff --git a/opentech/apply/funds/templates/funds/applicationsubmission_simplified_detail.html b/hypha/apply/funds/templates/funds/applicationsubmission_simplified_detail.html similarity index 100% rename from opentech/apply/funds/templates/funds/applicationsubmission_simplified_detail.html rename to hypha/apply/funds/templates/funds/applicationsubmission_simplified_detail.html diff --git a/opentech/apply/funds/templates/funds/base_submissions_table.html b/hypha/apply/funds/templates/funds/base_submissions_table.html similarity index 100% rename from opentech/apply/funds/templates/funds/base_submissions_table.html rename to hypha/apply/funds/templates/funds/base_submissions_table.html diff --git a/opentech/apply/funds/templates/funds/demo_workflow.html b/hypha/apply/funds/templates/funds/demo_workflow.html similarity index 100% rename from opentech/apply/funds/templates/funds/demo_workflow.html rename to hypha/apply/funds/templates/funds/demo_workflow.html diff --git a/opentech/apply/funds/templates/funds/email/confirmation.html b/hypha/apply/funds/templates/funds/email/confirmation.html similarity index 100% rename from opentech/apply/funds/templates/funds/email/confirmation.html rename to hypha/apply/funds/templates/funds/email/confirmation.html diff --git a/opentech/apply/funds/templates/funds/includes/actions.html b/hypha/apply/funds/templates/funds/includes/actions.html similarity index 100% rename from opentech/apply/funds/templates/funds/includes/actions.html rename to hypha/apply/funds/templates/funds/includes/actions.html diff --git a/opentech/apply/funds/templates/funds/includes/batch_progress_form.html b/hypha/apply/funds/templates/funds/includes/batch_progress_form.html similarity index 100% rename from opentech/apply/funds/templates/funds/includes/batch_progress_form.html rename to hypha/apply/funds/templates/funds/includes/batch_progress_form.html diff --git a/opentech/apply/funds/templates/funds/includes/batch_update_lead_form.html b/hypha/apply/funds/templates/funds/includes/batch_update_lead_form.html similarity index 100% rename from opentech/apply/funds/templates/funds/includes/batch_update_lead_form.html rename to hypha/apply/funds/templates/funds/includes/batch_update_lead_form.html diff --git a/opentech/apply/funds/templates/funds/includes/batch_update_reviewer_form.html b/hypha/apply/funds/templates/funds/includes/batch_update_reviewer_form.html similarity index 100% rename from opentech/apply/funds/templates/funds/includes/batch_update_reviewer_form.html rename to hypha/apply/funds/templates/funds/includes/batch_update_reviewer_form.html diff --git a/opentech/apply/funds/templates/funds/includes/create_project_form.html b/hypha/apply/funds/templates/funds/includes/create_project_form.html similarity index 100% rename from opentech/apply/funds/templates/funds/includes/create_project_form.html rename to hypha/apply/funds/templates/funds/includes/create_project_form.html diff --git a/opentech/apply/funds/templates/funds/includes/delegated_form_base.html b/hypha/apply/funds/templates/funds/includes/delegated_form_base.html similarity index 100% rename from opentech/apply/funds/templates/funds/includes/delegated_form_base.html rename to hypha/apply/funds/templates/funds/includes/delegated_form_base.html diff --git a/opentech/apply/funds/templates/funds/includes/meta_terms_block.html b/hypha/apply/funds/templates/funds/includes/meta_terms_block.html similarity index 100% rename from opentech/apply/funds/templates/funds/includes/meta_terms_block.html rename to hypha/apply/funds/templates/funds/includes/meta_terms_block.html diff --git a/opentech/apply/funds/templates/funds/includes/progress_form.html b/hypha/apply/funds/templates/funds/includes/progress_form.html similarity index 100% rename from opentech/apply/funds/templates/funds/includes/progress_form.html rename to hypha/apply/funds/templates/funds/includes/progress_form.html diff --git a/opentech/apply/funds/templates/funds/includes/project_block.html b/hypha/apply/funds/templates/funds/includes/project_block.html similarity index 100% rename from opentech/apply/funds/templates/funds/includes/project_block.html rename to hypha/apply/funds/templates/funds/includes/project_block.html diff --git a/opentech/apply/funds/templates/funds/includes/rendered_answers.html b/hypha/apply/funds/templates/funds/includes/rendered_answers.html similarity index 100% rename from opentech/apply/funds/templates/funds/includes/rendered_answers.html rename to hypha/apply/funds/templates/funds/includes/rendered_answers.html diff --git a/opentech/apply/funds/templates/funds/includes/review_sidebar.html b/hypha/apply/funds/templates/funds/includes/review_sidebar.html similarity index 100% rename from opentech/apply/funds/templates/funds/includes/review_sidebar.html rename to hypha/apply/funds/templates/funds/includes/review_sidebar.html diff --git a/opentech/apply/funds/templates/funds/includes/review_sidebar_item.html b/hypha/apply/funds/templates/funds/includes/review_sidebar_item.html similarity index 100% rename from opentech/apply/funds/templates/funds/includes/review_sidebar_item.html rename to hypha/apply/funds/templates/funds/includes/review_sidebar_item.html diff --git a/opentech/apply/funds/templates/funds/includes/revision_diff_table.html b/hypha/apply/funds/templates/funds/includes/revision_diff_table.html similarity index 100% rename from opentech/apply/funds/templates/funds/includes/revision_diff_table.html rename to hypha/apply/funds/templates/funds/includes/revision_diff_table.html diff --git a/opentech/apply/funds/templates/funds/includes/round-block-listing.html b/hypha/apply/funds/templates/funds/includes/round-block-listing.html similarity index 100% rename from opentech/apply/funds/templates/funds/includes/round-block-listing.html rename to hypha/apply/funds/templates/funds/includes/round-block-listing.html diff --git a/opentech/apply/funds/templates/funds/includes/round-block.html b/hypha/apply/funds/templates/funds/includes/round-block.html similarity index 100% rename from opentech/apply/funds/templates/funds/includes/round-block.html rename to hypha/apply/funds/templates/funds/includes/round-block.html diff --git a/opentech/apply/funds/templates/funds/includes/screening_form.html b/hypha/apply/funds/templates/funds/includes/screening_form.html similarity index 100% rename from opentech/apply/funds/templates/funds/includes/screening_form.html rename to hypha/apply/funds/templates/funds/includes/screening_form.html diff --git a/opentech/apply/funds/templates/funds/includes/screening_status_block.html b/hypha/apply/funds/templates/funds/includes/screening_status_block.html similarity index 100% rename from opentech/apply/funds/templates/funds/includes/screening_status_block.html rename to hypha/apply/funds/templates/funds/includes/screening_status_block.html diff --git a/opentech/apply/funds/templates/funds/includes/status-block.html b/hypha/apply/funds/templates/funds/includes/status-block.html similarity index 100% rename from opentech/apply/funds/templates/funds/includes/status-block.html rename to hypha/apply/funds/templates/funds/includes/status-block.html diff --git a/opentech/apply/funds/templates/funds/includes/status_bar.html b/hypha/apply/funds/templates/funds/includes/status_bar.html similarity index 100% rename from opentech/apply/funds/templates/funds/includes/status_bar.html rename to hypha/apply/funds/templates/funds/includes/status_bar.html diff --git a/opentech/apply/funds/templates/funds/includes/status_bar_item.html b/hypha/apply/funds/templates/funds/includes/status_bar_item.html similarity index 100% rename from opentech/apply/funds/templates/funds/includes/status_bar_item.html rename to hypha/apply/funds/templates/funds/includes/status_bar_item.html diff --git a/opentech/apply/funds/templates/funds/includes/table_filter_and_search.html b/hypha/apply/funds/templates/funds/includes/table_filter_and_search.html similarity index 100% rename from opentech/apply/funds/templates/funds/includes/table_filter_and_search.html rename to hypha/apply/funds/templates/funds/includes/table_filter_and_search.html diff --git a/opentech/apply/funds/templates/funds/includes/update_lead_form.html b/hypha/apply/funds/templates/funds/includes/update_lead_form.html similarity index 100% rename from opentech/apply/funds/templates/funds/includes/update_lead_form.html rename to hypha/apply/funds/templates/funds/includes/update_lead_form.html diff --git a/opentech/apply/funds/templates/funds/includes/update_meta_terms_form.html b/hypha/apply/funds/templates/funds/includes/update_meta_terms_form.html similarity index 100% rename from opentech/apply/funds/templates/funds/includes/update_meta_terms_form.html rename to hypha/apply/funds/templates/funds/includes/update_meta_terms_form.html diff --git a/opentech/apply/funds/templates/funds/includes/update_partner_form.html b/hypha/apply/funds/templates/funds/includes/update_partner_form.html similarity index 100% rename from opentech/apply/funds/templates/funds/includes/update_partner_form.html rename to hypha/apply/funds/templates/funds/includes/update_partner_form.html diff --git a/opentech/apply/funds/templates/funds/includes/update_reviewer_form.html b/hypha/apply/funds/templates/funds/includes/update_reviewer_form.html similarity index 100% rename from opentech/apply/funds/templates/funds/includes/update_reviewer_form.html rename to hypha/apply/funds/templates/funds/includes/update_reviewer_form.html diff --git a/opentech/apply/funds/templates/funds/lab_type.html b/hypha/apply/funds/templates/funds/lab_type.html similarity index 100% rename from opentech/apply/funds/templates/funds/lab_type.html rename to hypha/apply/funds/templates/funds/lab_type.html diff --git a/opentech/apply/funds/templates/funds/lab_type_landing.html b/hypha/apply/funds/templates/funds/lab_type_landing.html similarity index 100% rename from opentech/apply/funds/templates/funds/lab_type_landing.html rename to hypha/apply/funds/templates/funds/lab_type_landing.html diff --git a/opentech/apply/funds/templates/funds/revisions_compare.html b/hypha/apply/funds/templates/funds/revisions_compare.html similarity index 100% rename from opentech/apply/funds/templates/funds/revisions_compare.html rename to hypha/apply/funds/templates/funds/revisions_compare.html diff --git a/opentech/apply/funds/templates/funds/round.html b/hypha/apply/funds/templates/funds/round.html similarity index 100% rename from opentech/apply/funds/templates/funds/round.html rename to hypha/apply/funds/templates/funds/round.html diff --git a/opentech/apply/funds/templates/funds/round_landing.html b/hypha/apply/funds/templates/funds/round_landing.html similarity index 100% rename from opentech/apply/funds/templates/funds/round_landing.html rename to hypha/apply/funds/templates/funds/round_landing.html diff --git a/opentech/apply/funds/templates/funds/rounds.html b/hypha/apply/funds/templates/funds/rounds.html similarity index 100% rename from opentech/apply/funds/templates/funds/rounds.html rename to hypha/apply/funds/templates/funds/rounds.html diff --git a/opentech/apply/funds/templates/funds/submission_sealed.html b/hypha/apply/funds/templates/funds/submission_sealed.html similarity index 100% rename from opentech/apply/funds/templates/funds/submission_sealed.html rename to hypha/apply/funds/templates/funds/submission_sealed.html diff --git a/opentech/apply/funds/templates/funds/submissions.html b/hypha/apply/funds/templates/funds/submissions.html similarity index 100% rename from opentech/apply/funds/templates/funds/submissions.html rename to hypha/apply/funds/templates/funds/submissions.html diff --git a/opentech/apply/funds/templates/funds/submissions_by_round.html b/hypha/apply/funds/templates/funds/submissions_by_round.html similarity index 100% rename from opentech/apply/funds/templates/funds/submissions_by_round.html rename to hypha/apply/funds/templates/funds/submissions_by_round.html diff --git a/opentech/apply/funds/templates/funds/submissions_by_status.html b/hypha/apply/funds/templates/funds/submissions_by_status.html similarity index 100% rename from opentech/apply/funds/templates/funds/submissions_by_status.html rename to hypha/apply/funds/templates/funds/submissions_by_status.html diff --git a/opentech/apply/funds/templates/funds/submissions_overview.html b/hypha/apply/funds/templates/funds/submissions_overview.html similarity index 100% rename from opentech/apply/funds/templates/funds/submissions_overview.html rename to hypha/apply/funds/templates/funds/submissions_overview.html diff --git a/opentech/apply/funds/templates/funds/submissions_search.html b/hypha/apply/funds/templates/funds/submissions_search.html similarity index 100% rename from opentech/apply/funds/templates/funds/submissions_search.html rename to hypha/apply/funds/templates/funds/submissions_search.html diff --git a/opentech/apply/funds/templates/funds/submissions_staff_flagged.html b/hypha/apply/funds/templates/funds/submissions_staff_flagged.html similarity index 100% rename from opentech/apply/funds/templates/funds/submissions_staff_flagged.html rename to hypha/apply/funds/templates/funds/submissions_staff_flagged.html diff --git a/opentech/apply/funds/templates/funds/submissions_user_flagged.html b/hypha/apply/funds/templates/funds/submissions_user_flagged.html similarity index 100% rename from opentech/apply/funds/templates/funds/submissions_user_flagged.html rename to hypha/apply/funds/templates/funds/submissions_user_flagged.html diff --git a/opentech/apply/funds/templates/funds/tables/column_reviews.html b/hypha/apply/funds/templates/funds/tables/column_reviews.html similarity index 100% rename from opentech/apply/funds/templates/funds/tables/column_reviews.html rename to hypha/apply/funds/templates/funds/tables/column_reviews.html diff --git a/opentech/apply/funds/templates/funds/tables/table.html b/hypha/apply/funds/templates/funds/tables/table.html similarity index 100% rename from opentech/apply/funds/templates/funds/tables/table.html rename to hypha/apply/funds/templates/funds/tables/table.html diff --git a/opentech/apply/funds/templates/funds/widgets/icon_select2.html b/hypha/apply/funds/templates/funds/widgets/icon_select2.html similarity index 100% rename from opentech/apply/funds/templates/funds/widgets/icon_select2.html rename to hypha/apply/funds/templates/funds/widgets/icon_select2.html diff --git a/opentech/apply/funds/templatetags/__init__.py b/hypha/apply/funds/templatetags/__init__.py similarity index 100% rename from opentech/apply/funds/templatetags/__init__.py rename to hypha/apply/funds/templatetags/__init__.py diff --git a/opentech/apply/funds/templatetags/markdown_tags.py b/hypha/apply/funds/templatetags/markdown_tags.py similarity index 100% rename from opentech/apply/funds/templatetags/markdown_tags.py rename to hypha/apply/funds/templatetags/markdown_tags.py diff --git a/opentech/apply/funds/templatetags/statusbar_tags.py b/hypha/apply/funds/templatetags/statusbar_tags.py similarity index 100% rename from opentech/apply/funds/templatetags/statusbar_tags.py rename to hypha/apply/funds/templatetags/statusbar_tags.py diff --git a/opentech/apply/funds/templatetags/submission_tags.py b/hypha/apply/funds/templatetags/submission_tags.py similarity index 100% rename from opentech/apply/funds/templatetags/submission_tags.py rename to hypha/apply/funds/templatetags/submission_tags.py diff --git a/opentech/apply/funds/templatetags/table_tags.py b/hypha/apply/funds/templatetags/table_tags.py similarity index 100% rename from opentech/apply/funds/templatetags/table_tags.py rename to hypha/apply/funds/templatetags/table_tags.py diff --git a/opentech/apply/funds/templatetags/workflow_tags.py b/hypha/apply/funds/templatetags/workflow_tags.py similarity index 100% rename from opentech/apply/funds/templatetags/workflow_tags.py rename to hypha/apply/funds/templatetags/workflow_tags.py diff --git a/opentech/apply/funds/tests/__init__.py b/hypha/apply/funds/tests/__init__.py similarity index 100% rename from opentech/apply/funds/tests/__init__.py rename to hypha/apply/funds/tests/__init__.py diff --git a/opentech/apply/funds/tests/factories/__init__.py b/hypha/apply/funds/tests/factories/__init__.py similarity index 100% rename from opentech/apply/funds/tests/factories/__init__.py rename to hypha/apply/funds/tests/factories/__init__.py diff --git a/opentech/apply/funds/tests/factories/blocks.py b/hypha/apply/funds/tests/factories/blocks.py similarity index 100% rename from opentech/apply/funds/tests/factories/blocks.py rename to hypha/apply/funds/tests/factories/blocks.py diff --git a/opentech/apply/funds/tests/factories/models.py b/hypha/apply/funds/tests/factories/models.py similarity index 100% rename from opentech/apply/funds/tests/factories/models.py rename to hypha/apply/funds/tests/factories/models.py diff --git a/opentech/apply/funds/tests/models/__init__.py b/hypha/apply/funds/tests/models/__init__.py similarity index 100% rename from opentech/apply/funds/tests/models/__init__.py rename to hypha/apply/funds/tests/models/__init__.py diff --git a/opentech/apply/funds/tests/models/test_roundsandlabs.py b/hypha/apply/funds/tests/models/test_roundsandlabs.py similarity index 100% rename from opentech/apply/funds/tests/models/test_roundsandlabs.py rename to hypha/apply/funds/tests/models/test_roundsandlabs.py diff --git a/opentech/apply/funds/tests/test_admin_form.py b/hypha/apply/funds/tests/test_admin_form.py similarity index 100% rename from opentech/apply/funds/tests/test_admin_form.py rename to hypha/apply/funds/tests/test_admin_form.py diff --git a/opentech/apply/funds/tests/test_admin_views.py b/hypha/apply/funds/tests/test_admin_views.py similarity index 100% rename from opentech/apply/funds/tests/test_admin_views.py rename to hypha/apply/funds/tests/test_admin_views.py diff --git a/opentech/apply/funds/tests/test_forms.py b/hypha/apply/funds/tests/test_forms.py similarity index 100% rename from opentech/apply/funds/tests/test_forms.py rename to hypha/apply/funds/tests/test_forms.py diff --git a/opentech/apply/funds/tests/test_models.py b/hypha/apply/funds/tests/test_models.py similarity index 100% rename from opentech/apply/funds/tests/test_models.py rename to hypha/apply/funds/tests/test_models.py diff --git a/opentech/apply/funds/tests/test_tags.py b/hypha/apply/funds/tests/test_tags.py similarity index 100% rename from opentech/apply/funds/tests/test_tags.py rename to hypha/apply/funds/tests/test_tags.py diff --git a/opentech/apply/funds/tests/test_views.py b/hypha/apply/funds/tests/test_views.py similarity index 100% rename from opentech/apply/funds/tests/test_views.py rename to hypha/apply/funds/tests/test_views.py diff --git a/opentech/apply/funds/tests/views/__init__.py b/hypha/apply/funds/tests/views/__init__.py similarity index 100% rename from opentech/apply/funds/tests/views/__init__.py rename to hypha/apply/funds/tests/views/__init__.py diff --git a/opentech/apply/funds/tests/views/test_batch_progress.py b/hypha/apply/funds/tests/views/test_batch_progress.py similarity index 100% rename from opentech/apply/funds/tests/views/test_batch_progress.py rename to hypha/apply/funds/tests/views/test_batch_progress.py diff --git a/opentech/apply/funds/tests/views/test_batch_reviewers.py b/hypha/apply/funds/tests/views/test_batch_reviewers.py similarity index 100% rename from opentech/apply/funds/tests/views/test_batch_reviewers.py rename to hypha/apply/funds/tests/views/test_batch_reviewers.py diff --git a/opentech/apply/funds/tests/views/test_rounds.py b/hypha/apply/funds/tests/views/test_rounds.py similarity index 100% rename from opentech/apply/funds/tests/views/test_rounds.py rename to hypha/apply/funds/tests/views/test_rounds.py diff --git a/opentech/apply/funds/urls.py b/hypha/apply/funds/urls.py similarity index 100% rename from opentech/apply/funds/urls.py rename to hypha/apply/funds/urls.py diff --git a/opentech/apply/funds/utils.py b/hypha/apply/funds/utils.py similarity index 100% rename from opentech/apply/funds/utils.py rename to hypha/apply/funds/utils.py diff --git a/opentech/apply/funds/views.py b/hypha/apply/funds/views.py similarity index 100% rename from opentech/apply/funds/views.py rename to hypha/apply/funds/views.py diff --git a/opentech/apply/funds/wagtail_hooks.py b/hypha/apply/funds/wagtail_hooks.py similarity index 100% rename from opentech/apply/funds/wagtail_hooks.py rename to hypha/apply/funds/wagtail_hooks.py diff --git a/opentech/apply/funds/widgets.py b/hypha/apply/funds/widgets.py similarity index 100% rename from opentech/apply/funds/widgets.py rename to hypha/apply/funds/widgets.py diff --git a/opentech/apply/funds/workflow.py b/hypha/apply/funds/workflow.py similarity index 100% rename from opentech/apply/funds/workflow.py rename to hypha/apply/funds/workflow.py diff --git a/opentech/apply/home/__init__.py b/hypha/apply/home/__init__.py similarity index 100% rename from opentech/apply/home/__init__.py rename to hypha/apply/home/__init__.py diff --git a/opentech/apply/home/admin.py b/hypha/apply/home/admin.py similarity index 100% rename from opentech/apply/home/admin.py rename to hypha/apply/home/admin.py diff --git a/opentech/apply/home/apps.py b/hypha/apply/home/apps.py similarity index 100% rename from opentech/apply/home/apps.py rename to hypha/apply/home/apps.py diff --git a/opentech/apply/home/factories.py b/hypha/apply/home/factories.py similarity index 100% rename from opentech/apply/home/factories.py rename to hypha/apply/home/factories.py diff --git a/opentech/apply/home/migrations/0001_initial.py b/hypha/apply/home/migrations/0001_initial.py similarity index 100% rename from opentech/apply/home/migrations/0001_initial.py rename to hypha/apply/home/migrations/0001_initial.py diff --git a/opentech/apply/home/migrations/0002_add_apply_homepage.py b/hypha/apply/home/migrations/0002_add_apply_homepage.py similarity index 100% rename from opentech/apply/home/migrations/0002_add_apply_homepage.py rename to hypha/apply/home/migrations/0002_add_apply_homepage.py diff --git a/opentech/apply/home/migrations/__init__.py b/hypha/apply/home/migrations/__init__.py similarity index 100% rename from opentech/apply/home/migrations/__init__.py rename to hypha/apply/home/migrations/__init__.py diff --git a/opentech/apply/home/models.py b/hypha/apply/home/models.py similarity index 100% rename from opentech/apply/home/models.py rename to hypha/apply/home/models.py diff --git a/opentech/apply/home/templates/apply_home/apply_home_page.html b/hypha/apply/home/templates/apply_home/apply_home_page.html similarity index 100% rename from opentech/apply/home/templates/apply_home/apply_home_page.html rename to hypha/apply/home/templates/apply_home/apply_home_page.html diff --git a/opentech/apply/home/templates/apply_home/includes/apply_listing.html b/hypha/apply/home/templates/apply_home/includes/apply_listing.html similarity index 100% rename from opentech/apply/home/templates/apply_home/includes/apply_listing.html rename to hypha/apply/home/templates/apply_home/includes/apply_listing.html diff --git a/opentech/apply/home/tests.py b/hypha/apply/home/tests.py similarity index 100% rename from opentech/apply/home/tests.py rename to hypha/apply/home/tests.py diff --git a/opentech/apply/home/views.py b/hypha/apply/home/views.py similarity index 100% rename from opentech/apply/home/views.py rename to hypha/apply/home/views.py diff --git a/opentech/apply/home/wagtail_hooks.py b/hypha/apply/home/wagtail_hooks.py similarity index 100% rename from opentech/apply/home/wagtail_hooks.py rename to hypha/apply/home/wagtail_hooks.py diff --git a/opentech/apply/middleware.py b/hypha/apply/middleware.py similarity index 100% rename from opentech/apply/middleware.py rename to hypha/apply/middleware.py diff --git a/opentech/apply/projects/__init__.py b/hypha/apply/projects/__init__.py similarity index 100% rename from opentech/apply/projects/__init__.py rename to hypha/apply/projects/__init__.py diff --git a/opentech/apply/projects/admin.py b/hypha/apply/projects/admin.py similarity index 100% rename from opentech/apply/projects/admin.py rename to hypha/apply/projects/admin.py diff --git a/opentech/apply/projects/apps.py b/hypha/apply/projects/apps.py similarity index 100% rename from opentech/apply/projects/apps.py rename to hypha/apply/projects/apps.py diff --git a/opentech/apply/projects/context_processors.py b/hypha/apply/projects/context_processors.py similarity index 100% rename from opentech/apply/projects/context_processors.py rename to hypha/apply/projects/context_processors.py diff --git a/opentech/apply/projects/files.py b/hypha/apply/projects/files.py similarity index 100% rename from opentech/apply/projects/files.py rename to hypha/apply/projects/files.py diff --git a/opentech/apply/projects/filters.py b/hypha/apply/projects/filters.py similarity index 100% rename from opentech/apply/projects/filters.py rename to hypha/apply/projects/filters.py diff --git a/opentech/apply/projects/forms.py b/hypha/apply/projects/forms.py similarity index 100% rename from opentech/apply/projects/forms.py rename to hypha/apply/projects/forms.py diff --git a/opentech/apply/projects/management/commands/notify_report_due.py b/hypha/apply/projects/management/commands/notify_report_due.py similarity index 100% rename from opentech/apply/projects/management/commands/notify_report_due.py rename to hypha/apply/projects/management/commands/notify_report_due.py diff --git a/opentech/apply/projects/migrations/0001_initial.py b/hypha/apply/projects/migrations/0001_initial.py similarity index 100% rename from opentech/apply/projects/migrations/0001_initial.py rename to hypha/apply/projects/migrations/0001_initial.py diff --git a/opentech/apply/projects/migrations/0002_add_submission_fields_to_project.py b/hypha/apply/projects/migrations/0002_add_submission_fields_to_project.py similarity index 100% rename from opentech/apply/projects/migrations/0002_add_submission_fields_to_project.py rename to hypha/apply/projects/migrations/0002_add_submission_fields_to_project.py diff --git a/opentech/apply/projects/migrations/0003_add_project_lead.py b/hypha/apply/projects/migrations/0003_add_project_lead.py similarity index 100% rename from opentech/apply/projects/migrations/0003_add_project_lead.py rename to hypha/apply/projects/migrations/0003_add_project_lead.py diff --git a/opentech/apply/projects/migrations/0004_project_rename_name_to_title.py b/hypha/apply/projects/migrations/0004_project_rename_name_to_title.py similarity index 100% rename from opentech/apply/projects/migrations/0004_project_rename_name_to_title.py rename to hypha/apply/projects/migrations/0004_project_rename_name_to_title.py diff --git a/opentech/apply/projects/migrations/0005_add_user_to_project.py b/hypha/apply/projects/migrations/0005_add_user_to_project.py similarity index 100% rename from opentech/apply/projects/migrations/0005_add_user_to_project.py rename to hypha/apply/projects/migrations/0005_add_user_to_project.py diff --git a/opentech/apply/projects/migrations/0006_add_project_paf_fields.py b/hypha/apply/projects/migrations/0006_add_project_paf_fields.py similarity index 100% rename from opentech/apply/projects/migrations/0006_add_project_paf_fields.py rename to hypha/apply/projects/migrations/0006_add_project_paf_fields.py diff --git a/opentech/apply/projects/migrations/0007_fix_proposed_end_date_verbose_name.py b/hypha/apply/projects/migrations/0007_fix_proposed_end_date_verbose_name.py similarity index 100% rename from opentech/apply/projects/migrations/0007_fix_proposed_end_date_verbose_name.py rename to hypha/apply/projects/migrations/0007_fix_proposed_end_date_verbose_name.py diff --git a/opentech/apply/projects/migrations/0008_add_value_validator.py b/hypha/apply/projects/migrations/0008_add_value_validator.py similarity index 100% rename from opentech/apply/projects/migrations/0008_add_value_validator.py rename to hypha/apply/projects/migrations/0008_add_value_validator.py diff --git a/opentech/apply/projects/migrations/0009_add_approval.py b/hypha/apply/projects/migrations/0009_add_approval.py similarity index 100% rename from opentech/apply/projects/migrations/0009_add_approval.py rename to hypha/apply/projects/migrations/0009_add_approval.py diff --git a/opentech/apply/projects/migrations/0009_documentcategory.py b/hypha/apply/projects/migrations/0009_documentcategory.py similarity index 100% rename from opentech/apply/projects/migrations/0009_documentcategory.py rename to hypha/apply/projects/migrations/0009_documentcategory.py diff --git a/opentech/apply/projects/migrations/0010_add_related_names_to_approval_fks.py b/hypha/apply/projects/migrations/0010_add_related_names_to_approval_fks.py similarity index 100% rename from opentech/apply/projects/migrations/0010_add_related_names_to_approval_fks.py rename to hypha/apply/projects/migrations/0010_add_related_names_to_approval_fks.py diff --git a/opentech/apply/projects/migrations/0011_add_packet_file.py b/hypha/apply/projects/migrations/0011_add_packet_file.py similarity index 100% rename from opentech/apply/projects/migrations/0011_add_packet_file.py rename to hypha/apply/projects/migrations/0011_add_packet_file.py diff --git a/opentech/apply/projects/migrations/0012_adjust_storage_class.py b/hypha/apply/projects/migrations/0012_adjust_storage_class.py similarity index 100% rename from opentech/apply/projects/migrations/0012_adjust_storage_class.py rename to hypha/apply/projects/migrations/0012_adjust_storage_class.py diff --git a/opentech/apply/projects/migrations/0013_add_contract.py b/hypha/apply/projects/migrations/0013_add_contract.py similarity index 100% rename from opentech/apply/projects/migrations/0013_add_contract.py rename to hypha/apply/projects/migrations/0013_add_contract.py diff --git a/opentech/apply/projects/migrations/0014_add_payment_related_models.py b/hypha/apply/projects/migrations/0014_add_payment_related_models.py similarity index 100% rename from opentech/apply/projects/migrations/0014_add_payment_related_models.py rename to hypha/apply/projects/migrations/0014_add_payment_related_models.py diff --git a/opentech/apply/projects/migrations/0015_add_payment_request_changes_requested.py b/hypha/apply/projects/migrations/0015_add_payment_request_changes_requested.py similarity index 100% rename from opentech/apply/projects/migrations/0015_add_payment_request_changes_requested.py rename to hypha/apply/projects/migrations/0015_add_payment_request_changes_requested.py diff --git a/opentech/apply/projects/migrations/0016_add_project_settings.py b/hypha/apply/projects/migrations/0016_add_project_settings.py similarity index 100% rename from opentech/apply/projects/migrations/0016_add_project_settings.py rename to hypha/apply/projects/migrations/0016_add_project_settings.py diff --git a/opentech/apply/projects/migrations/0017_add_sent_to_compliance_at.py b/hypha/apply/projects/migrations/0017_add_sent_to_compliance_at.py similarity index 100% rename from opentech/apply/projects/migrations/0017_add_sent_to_compliance_at.py rename to hypha/apply/projects/migrations/0017_add_sent_to_compliance_at.py diff --git a/opentech/apply/projects/migrations/0018_projectapprovalform.py b/hypha/apply/projects/migrations/0018_projectapprovalform.py similarity index 100% rename from opentech/apply/projects/migrations/0018_projectapprovalform.py rename to hypha/apply/projects/migrations/0018_projectapprovalform.py diff --git a/opentech/apply/projects/migrations/0019_add_form_to_projects.py b/hypha/apply/projects/migrations/0019_add_form_to_projects.py similarity index 100% rename from opentech/apply/projects/migrations/0019_add_form_to_projects.py rename to hypha/apply/projects/migrations/0019_add_form_to_projects.py diff --git a/opentech/apply/projects/migrations/0020_rename_value_to_requested_value.py b/hypha/apply/projects/migrations/0020_rename_value_to_requested_value.py similarity index 100% rename from opentech/apply/projects/migrations/0020_rename_value_to_requested_value.py rename to hypha/apply/projects/migrations/0020_rename_value_to_requested_value.py diff --git a/opentech/apply/projects/migrations/0021_add_paid_value.py b/hypha/apply/projects/migrations/0021_add_paid_value.py similarity index 100% rename from opentech/apply/projects/migrations/0021_add_paid_value.py rename to hypha/apply/projects/migrations/0021_add_paid_value.py diff --git a/opentech/apply/projects/migrations/0022_update_field_definitions_for_forms.py b/hypha/apply/projects/migrations/0022_update_field_definitions_for_forms.py similarity index 100% rename from opentech/apply/projects/migrations/0022_update_field_definitions_for_forms.py rename to hypha/apply/projects/migrations/0022_update_field_definitions_for_forms.py diff --git a/opentech/apply/projects/migrations/0023_ensure_contracts_uses_private_storage.py b/hypha/apply/projects/migrations/0023_ensure_contracts_uses_private_storage.py similarity index 100% rename from opentech/apply/projects/migrations/0023_ensure_contracts_uses_private_storage.py rename to hypha/apply/projects/migrations/0023_ensure_contracts_uses_private_storage.py diff --git a/opentech/apply/projects/migrations/0024_allow_no_comments_on_pr.py b/hypha/apply/projects/migrations/0024_allow_no_comments_on_pr.py similarity index 100% rename from opentech/apply/projects/migrations/0024_allow_no_comments_on_pr.py rename to hypha/apply/projects/migrations/0024_allow_no_comments_on_pr.py diff --git a/opentech/apply/projects/migrations/0025_add_report_models.py b/hypha/apply/projects/migrations/0025_add_report_models.py similarity index 100% rename from opentech/apply/projects/migrations/0025_add_report_models.py rename to hypha/apply/projects/migrations/0025_add_report_models.py diff --git a/opentech/apply/projects/migrations/0026_data_contract_approved_date.py b/hypha/apply/projects/migrations/0026_data_contract_approved_date.py similarity index 100% rename from opentech/apply/projects/migrations/0026_data_contract_approved_date.py rename to hypha/apply/projects/migrations/0026_data_contract_approved_date.py diff --git a/opentech/apply/projects/migrations/0027_report_current.py b/hypha/apply/projects/migrations/0027_report_current.py similarity index 100% rename from opentech/apply/projects/migrations/0027_report_current.py rename to hypha/apply/projects/migrations/0027_report_current.py diff --git a/opentech/apply/projects/migrations/0028_report_draft.py b/hypha/apply/projects/migrations/0028_report_draft.py similarity index 100% rename from opentech/apply/projects/migrations/0028_report_draft.py rename to hypha/apply/projects/migrations/0028_report_draft.py diff --git a/opentech/apply/projects/migrations/0029_report_submitted.py b/hypha/apply/projects/migrations/0029_report_submitted.py similarity index 100% rename from opentech/apply/projects/migrations/0029_report_submitted.py rename to hypha/apply/projects/migrations/0029_report_submitted.py diff --git a/opentech/apply/projects/migrations/0030_report_skipped.py b/hypha/apply/projects/migrations/0030_report_skipped.py similarity index 100% rename from opentech/apply/projects/migrations/0030_report_skipped.py rename to hypha/apply/projects/migrations/0030_report_skipped.py diff --git a/opentech/apply/projects/migrations/0031_add_public_private_content.py b/hypha/apply/projects/migrations/0031_add_public_private_content.py similarity index 100% rename from opentech/apply/projects/migrations/0031_add_public_private_content.py rename to hypha/apply/projects/migrations/0031_add_public_private_content.py diff --git a/opentech/apply/projects/migrations/0032_report_notified.py b/hypha/apply/projects/migrations/0032_report_notified.py similarity index 100% rename from opentech/apply/projects/migrations/0032_report_notified.py rename to hypha/apply/projects/migrations/0032_report_notified.py diff --git a/opentech/apply/projects/migrations/__init__.py b/hypha/apply/projects/migrations/__init__.py similarity index 100% rename from opentech/apply/projects/migrations/__init__.py rename to hypha/apply/projects/migrations/__init__.py diff --git a/opentech/apply/projects/models.py b/hypha/apply/projects/models.py similarity index 100% rename from opentech/apply/projects/models.py rename to hypha/apply/projects/models.py diff --git a/opentech/apply/projects/tables.py b/hypha/apply/projects/tables.py similarity index 100% rename from opentech/apply/projects/tables.py rename to hypha/apply/projects/tables.py diff --git a/opentech/apply/projects/templates/application_projects/filters/widgets/date_range_input_widget.html b/hypha/apply/projects/templates/application_projects/filters/widgets/date_range_input_widget.html similarity index 100% rename from opentech/apply/projects/templates/application_projects/filters/widgets/date_range_input_widget.html rename to hypha/apply/projects/templates/application_projects/filters/widgets/date_range_input_widget.html diff --git a/opentech/apply/projects/templates/application_projects/includes/funding_block.html b/hypha/apply/projects/templates/application_projects/includes/funding_block.html similarity index 100% rename from opentech/apply/projects/templates/application_projects/includes/funding_block.html rename to hypha/apply/projects/templates/application_projects/includes/funding_block.html diff --git a/opentech/apply/projects/templates/application_projects/includes/invoice_block.html b/hypha/apply/projects/templates/application_projects/includes/invoice_block.html similarity index 100% rename from opentech/apply/projects/templates/application_projects/includes/invoice_block.html rename to hypha/apply/projects/templates/application_projects/includes/invoice_block.html diff --git a/opentech/apply/projects/templates/application_projects/includes/payment_requests.html b/hypha/apply/projects/templates/application_projects/includes/payment_requests.html similarity index 100% rename from opentech/apply/projects/templates/application_projects/includes/payment_requests.html rename to hypha/apply/projects/templates/application_projects/includes/payment_requests.html diff --git a/opentech/apply/projects/templates/application_projects/includes/paymentrequest_admin_detail.html b/hypha/apply/projects/templates/application_projects/includes/paymentrequest_admin_detail.html similarity index 100% rename from opentech/apply/projects/templates/application_projects/includes/paymentrequest_admin_detail.html rename to hypha/apply/projects/templates/application_projects/includes/paymentrequest_admin_detail.html diff --git a/opentech/apply/projects/templates/application_projects/includes/report_line.html b/hypha/apply/projects/templates/application_projects/includes/report_line.html similarity index 100% rename from opentech/apply/projects/templates/application_projects/includes/report_line.html rename to hypha/apply/projects/templates/application_projects/includes/report_line.html diff --git a/opentech/apply/projects/templates/application_projects/includes/reports.html b/hypha/apply/projects/templates/application_projects/includes/reports.html similarity index 100% rename from opentech/apply/projects/templates/application_projects/includes/reports.html rename to hypha/apply/projects/templates/application_projects/includes/reports.html diff --git a/opentech/apply/projects/templates/application_projects/includes/supporting_documents.html b/hypha/apply/projects/templates/application_projects/includes/supporting_documents.html similarity index 100% rename from opentech/apply/projects/templates/application_projects/includes/supporting_documents.html rename to hypha/apply/projects/templates/application_projects/includes/supporting_documents.html diff --git a/opentech/apply/projects/templates/application_projects/overview.html b/hypha/apply/projects/templates/application_projects/overview.html similarity index 100% rename from opentech/apply/projects/templates/application_projects/overview.html rename to hypha/apply/projects/templates/application_projects/overview.html diff --git a/opentech/apply/projects/templates/application_projects/payment_request_list.html b/hypha/apply/projects/templates/application_projects/payment_request_list.html similarity index 100% rename from opentech/apply/projects/templates/application_projects/payment_request_list.html rename to hypha/apply/projects/templates/application_projects/payment_request_list.html diff --git a/opentech/apply/projects/templates/application_projects/paymentrequest_admin_detail.html b/hypha/apply/projects/templates/application_projects/paymentrequest_admin_detail.html similarity index 100% rename from opentech/apply/projects/templates/application_projects/paymentrequest_admin_detail.html rename to hypha/apply/projects/templates/application_projects/paymentrequest_admin_detail.html diff --git a/opentech/apply/projects/templates/application_projects/paymentrequest_confirm_delete.html b/hypha/apply/projects/templates/application_projects/paymentrequest_confirm_delete.html similarity index 100% rename from opentech/apply/projects/templates/application_projects/paymentrequest_confirm_delete.html rename to hypha/apply/projects/templates/application_projects/paymentrequest_confirm_delete.html diff --git a/opentech/apply/projects/templates/application_projects/paymentrequest_detail.html b/hypha/apply/projects/templates/application_projects/paymentrequest_detail.html similarity index 100% rename from opentech/apply/projects/templates/application_projects/paymentrequest_detail.html rename to hypha/apply/projects/templates/application_projects/paymentrequest_detail.html diff --git a/opentech/apply/projects/templates/application_projects/paymentrequest_form.html b/hypha/apply/projects/templates/application_projects/paymentrequest_form.html similarity index 100% rename from opentech/apply/projects/templates/application_projects/paymentrequest_form.html rename to hypha/apply/projects/templates/application_projects/paymentrequest_form.html diff --git a/opentech/apply/projects/templates/application_projects/project_admin_detail.html b/hypha/apply/projects/templates/application_projects/project_admin_detail.html similarity index 100% rename from opentech/apply/projects/templates/application_projects/project_admin_detail.html rename to hypha/apply/projects/templates/application_projects/project_admin_detail.html diff --git a/opentech/apply/projects/templates/application_projects/project_applicant_detail.html b/hypha/apply/projects/templates/application_projects/project_applicant_detail.html similarity index 100% rename from opentech/apply/projects/templates/application_projects/project_applicant_detail.html rename to hypha/apply/projects/templates/application_projects/project_applicant_detail.html diff --git a/opentech/apply/projects/templates/application_projects/project_detail.html b/hypha/apply/projects/templates/application_projects/project_detail.html similarity index 100% rename from opentech/apply/projects/templates/application_projects/project_detail.html rename to hypha/apply/projects/templates/application_projects/project_detail.html diff --git a/opentech/apply/projects/templates/application_projects/project_form.html b/hypha/apply/projects/templates/application_projects/project_form.html similarity index 100% rename from opentech/apply/projects/templates/application_projects/project_form.html rename to hypha/apply/projects/templates/application_projects/project_form.html diff --git a/opentech/apply/projects/templates/application_projects/project_list.html b/hypha/apply/projects/templates/application_projects/project_list.html similarity index 100% rename from opentech/apply/projects/templates/application_projects/project_list.html rename to hypha/apply/projects/templates/application_projects/project_list.html diff --git a/opentech/apply/projects/templates/application_projects/project_simplified_detail.html b/hypha/apply/projects/templates/application_projects/project_simplified_detail.html similarity index 100% rename from opentech/apply/projects/templates/application_projects/project_simplified_detail.html rename to hypha/apply/projects/templates/application_projects/project_simplified_detail.html diff --git a/opentech/apply/projects/templates/application_projects/report_detail.html b/hypha/apply/projects/templates/application_projects/report_detail.html similarity index 100% rename from opentech/apply/projects/templates/application_projects/report_detail.html rename to hypha/apply/projects/templates/application_projects/report_detail.html diff --git a/opentech/apply/projects/templates/application_projects/report_form.html b/hypha/apply/projects/templates/application_projects/report_form.html similarity index 100% rename from opentech/apply/projects/templates/application_projects/report_form.html rename to hypha/apply/projects/templates/application_projects/report_form.html diff --git a/opentech/apply/projects/templates/application_projects/report_list.html b/hypha/apply/projects/templates/application_projects/report_list.html similarity index 100% rename from opentech/apply/projects/templates/application_projects/report_list.html rename to hypha/apply/projects/templates/application_projects/report_list.html diff --git a/opentech/apply/projects/templatetags/__init__.py b/hypha/apply/projects/templatetags/__init__.py similarity index 100% rename from opentech/apply/projects/templatetags/__init__.py rename to hypha/apply/projects/templatetags/__init__.py diff --git a/opentech/apply/projects/templatetags/approval_tools.py b/hypha/apply/projects/templatetags/approval_tools.py similarity index 100% rename from opentech/apply/projects/templatetags/approval_tools.py rename to hypha/apply/projects/templatetags/approval_tools.py diff --git a/opentech/apply/projects/templatetags/contract_tools.py b/hypha/apply/projects/templatetags/contract_tools.py similarity index 100% rename from opentech/apply/projects/templatetags/contract_tools.py rename to hypha/apply/projects/templatetags/contract_tools.py diff --git a/opentech/apply/projects/templatetags/payment_request_tools.py b/hypha/apply/projects/templatetags/payment_request_tools.py similarity index 100% rename from opentech/apply/projects/templatetags/payment_request_tools.py rename to hypha/apply/projects/templatetags/payment_request_tools.py diff --git a/opentech/apply/projects/tests/__init__.py b/hypha/apply/projects/tests/__init__.py similarity index 100% rename from opentech/apply/projects/tests/__init__.py rename to hypha/apply/projects/tests/__init__.py diff --git a/opentech/apply/projects/tests/factories.py b/hypha/apply/projects/tests/factories.py similarity index 100% rename from opentech/apply/projects/tests/factories.py rename to hypha/apply/projects/tests/factories.py diff --git a/opentech/apply/projects/tests/test_commands.py b/hypha/apply/projects/tests/test_commands.py similarity index 100% rename from opentech/apply/projects/tests/test_commands.py rename to hypha/apply/projects/tests/test_commands.py diff --git a/opentech/apply/projects/tests/test_files.py b/hypha/apply/projects/tests/test_files.py similarity index 100% rename from opentech/apply/projects/tests/test_files.py rename to hypha/apply/projects/tests/test_files.py diff --git a/opentech/apply/projects/tests/test_forms.py b/hypha/apply/projects/tests/test_forms.py similarity index 100% rename from opentech/apply/projects/tests/test_forms.py rename to hypha/apply/projects/tests/test_forms.py diff --git a/opentech/apply/projects/tests/test_models.py b/hypha/apply/projects/tests/test_models.py similarity index 100% rename from opentech/apply/projects/tests/test_models.py rename to hypha/apply/projects/tests/test_models.py diff --git a/opentech/apply/projects/tests/test_settings.py b/hypha/apply/projects/tests/test_settings.py similarity index 100% rename from opentech/apply/projects/tests/test_settings.py rename to hypha/apply/projects/tests/test_settings.py diff --git a/opentech/apply/projects/tests/test_templatetags.py b/hypha/apply/projects/tests/test_templatetags.py similarity index 100% rename from opentech/apply/projects/tests/test_templatetags.py rename to hypha/apply/projects/tests/test_templatetags.py diff --git a/opentech/apply/projects/tests/test_views.py b/hypha/apply/projects/tests/test_views.py similarity index 100% rename from opentech/apply/projects/tests/test_views.py rename to hypha/apply/projects/tests/test_views.py diff --git a/opentech/apply/projects/urls.py b/hypha/apply/projects/urls.py similarity index 100% rename from opentech/apply/projects/urls.py rename to hypha/apply/projects/urls.py diff --git a/opentech/apply/projects/views/__init__.py b/hypha/apply/projects/views/__init__.py similarity index 100% rename from opentech/apply/projects/views/__init__.py rename to hypha/apply/projects/views/__init__.py diff --git a/opentech/apply/projects/views/payment.py b/hypha/apply/projects/views/payment.py similarity index 100% rename from opentech/apply/projects/views/payment.py rename to hypha/apply/projects/views/payment.py diff --git a/opentech/apply/projects/views/project.py b/hypha/apply/projects/views/project.py similarity index 100% rename from opentech/apply/projects/views/project.py rename to hypha/apply/projects/views/project.py diff --git a/opentech/apply/projects/views/report.py b/hypha/apply/projects/views/report.py similarity index 100% rename from opentech/apply/projects/views/report.py rename to hypha/apply/projects/views/report.py diff --git a/opentech/apply/projects/wagtail_hooks.py b/hypha/apply/projects/wagtail_hooks.py similarity index 100% rename from opentech/apply/projects/wagtail_hooks.py rename to hypha/apply/projects/wagtail_hooks.py diff --git a/opentech/apply/review/__init__.py b/hypha/apply/review/__init__.py similarity index 100% rename from opentech/apply/review/__init__.py rename to hypha/apply/review/__init__.py diff --git a/opentech/apply/review/admin.py b/hypha/apply/review/admin.py similarity index 100% rename from opentech/apply/review/admin.py rename to hypha/apply/review/admin.py diff --git a/opentech/apply/review/admin_helpers.py b/hypha/apply/review/admin_helpers.py similarity index 100% rename from opentech/apply/review/admin_helpers.py rename to hypha/apply/review/admin_helpers.py diff --git a/opentech/apply/review/apps.py b/hypha/apply/review/apps.py similarity index 100% rename from opentech/apply/review/apps.py rename to hypha/apply/review/apps.py diff --git a/opentech/apply/review/blocks.py b/hypha/apply/review/blocks.py similarity index 100% rename from opentech/apply/review/blocks.py rename to hypha/apply/review/blocks.py diff --git a/opentech/apply/review/fields.py b/hypha/apply/review/fields.py similarity index 100% rename from opentech/apply/review/fields.py rename to hypha/apply/review/fields.py diff --git a/opentech/apply/review/forms.py b/hypha/apply/review/forms.py similarity index 100% rename from opentech/apply/review/forms.py rename to hypha/apply/review/forms.py diff --git a/opentech/apply/review/management/__init__.py b/hypha/apply/review/management/__init__.py similarity index 100% rename from opentech/apply/review/management/__init__.py rename to hypha/apply/review/management/__init__.py diff --git a/opentech/apply/review/management/commands/__init__.py b/hypha/apply/review/management/commands/__init__.py similarity index 100% rename from opentech/apply/review/management/commands/__init__.py rename to hypha/apply/review/management/commands/__init__.py diff --git a/opentech/apply/review/management/commands/export_reviews_csv.py b/hypha/apply/review/management/commands/export_reviews_csv.py similarity index 100% rename from opentech/apply/review/management/commands/export_reviews_csv.py rename to hypha/apply/review/management/commands/export_reviews_csv.py diff --git a/opentech/apply/review/management/commands/fix_stream_field_ids.py b/hypha/apply/review/management/commands/fix_stream_field_ids.py similarity index 100% rename from opentech/apply/review/management/commands/fix_stream_field_ids.py rename to hypha/apply/review/management/commands/fix_stream_field_ids.py diff --git a/opentech/apply/review/management/commands/migrate_community_lab_reviews.py b/hypha/apply/review/management/commands/migrate_community_lab_reviews.py similarity index 100% rename from opentech/apply/review/management/commands/migrate_community_lab_reviews.py rename to hypha/apply/review/management/commands/migrate_community_lab_reviews.py diff --git a/opentech/apply/review/management/commands/migrate_concept_reviews.py b/hypha/apply/review/management/commands/migrate_concept_reviews.py similarity index 100% rename from opentech/apply/review/management/commands/migrate_concept_reviews.py rename to hypha/apply/review/management/commands/migrate_concept_reviews.py diff --git a/opentech/apply/review/management/commands/migrate_fellowship_application_reviews.py b/hypha/apply/review/management/commands/migrate_fellowship_application_reviews.py similarity index 100% rename from opentech/apply/review/management/commands/migrate_fellowship_application_reviews.py rename to hypha/apply/review/management/commands/migrate_fellowship_application_reviews.py diff --git a/opentech/apply/review/management/commands/migrate_fellowship_proposal_reviews.py b/hypha/apply/review/management/commands/migrate_fellowship_proposal_reviews.py similarity index 100% rename from opentech/apply/review/management/commands/migrate_fellowship_proposal_reviews.py rename to hypha/apply/review/management/commands/migrate_fellowship_proposal_reviews.py diff --git a/opentech/apply/review/management/commands/migrate_proposal_reviews.py b/hypha/apply/review/management/commands/migrate_proposal_reviews.py similarity index 100% rename from opentech/apply/review/management/commands/migrate_proposal_reviews.py rename to hypha/apply/review/management/commands/migrate_proposal_reviews.py diff --git a/opentech/apply/review/management/commands/migrate_rr_reviews.py b/hypha/apply/review/management/commands/migrate_rr_reviews.py similarity index 100% rename from opentech/apply/review/management/commands/migrate_rr_reviews.py rename to hypha/apply/review/management/commands/migrate_rr_reviews.py diff --git a/opentech/apply/review/management/commands/migration_review_base.py b/hypha/apply/review/management/commands/migration_review_base.py similarity index 100% rename from opentech/apply/review/management/commands/migration_review_base.py rename to hypha/apply/review/management/commands/migration_review_base.py diff --git a/opentech/apply/review/migrations/0001_initial.py b/hypha/apply/review/migrations/0001_initial.py similarity index 100% rename from opentech/apply/review/migrations/0001_initial.py rename to hypha/apply/review/migrations/0001_initial.py diff --git a/opentech/apply/review/migrations/0002_add_common_fields.py b/hypha/apply/review/migrations/0002_add_common_fields.py similarity index 100% rename from opentech/apply/review/migrations/0002_add_common_fields.py rename to hypha/apply/review/migrations/0002_add_common_fields.py diff --git a/opentech/apply/review/migrations/0003_review_json_field.py b/hypha/apply/review/migrations/0003_review_json_field.py similarity index 100% rename from opentech/apply/review/migrations/0003_review_json_field.py rename to hypha/apply/review/migrations/0003_review_json_field.py diff --git a/opentech/apply/review/migrations/0004_review_is_draft.py b/hypha/apply/review/migrations/0004_review_is_draft.py similarity index 100% rename from opentech/apply/review/migrations/0004_review_is_draft.py rename to hypha/apply/review/migrations/0004_review_is_draft.py diff --git a/opentech/apply/review/migrations/0005_streamform.py b/hypha/apply/review/migrations/0005_streamform.py similarity index 100% rename from opentech/apply/review/migrations/0005_streamform.py rename to hypha/apply/review/migrations/0005_streamform.py diff --git a/opentech/apply/review/migrations/0006_remove_review_review.py b/hypha/apply/review/migrations/0006_remove_review_review.py similarity index 100% rename from opentech/apply/review/migrations/0006_remove_review_review.py rename to hypha/apply/review/migrations/0006_remove_review_review.py diff --git a/opentech/apply/review/migrations/0007_review_revision.py b/hypha/apply/review/migrations/0007_review_revision.py similarity index 100% rename from opentech/apply/review/migrations/0007_review_revision.py rename to hypha/apply/review/migrations/0007_review_revision.py diff --git a/opentech/apply/review/migrations/0008_update_fields_for_tweaks.py b/hypha/apply/review/migrations/0008_update_fields_for_tweaks.py similarity index 100% rename from opentech/apply/review/migrations/0008_update_fields_for_tweaks.py rename to hypha/apply/review/migrations/0008_update_fields_for_tweaks.py diff --git a/opentech/apply/review/migrations/0009_auto_20180823_0918.py b/hypha/apply/review/migrations/0009_auto_20180823_0918.py similarity index 100% rename from opentech/apply/review/migrations/0009_auto_20180823_0918.py rename to hypha/apply/review/migrations/0009_auto_20180823_0918.py diff --git a/opentech/apply/review/migrations/0010_review_drupal_id.py b/hypha/apply/review/migrations/0010_review_drupal_id.py similarity index 100% rename from opentech/apply/review/migrations/0010_review_drupal_id.py rename to hypha/apply/review/migrations/0010_review_drupal_id.py diff --git a/opentech/apply/review/migrations/0011_add_date_fields.py b/hypha/apply/review/migrations/0011_add_date_fields.py similarity index 100% rename from opentech/apply/review/migrations/0011_add_date_fields.py rename to hypha/apply/review/migrations/0011_add_date_fields.py diff --git a/opentech/apply/review/migrations/0012_auto_20180926_0948.py b/hypha/apply/review/migrations/0012_auto_20180926_0948.py similarity index 100% rename from opentech/apply/review/migrations/0012_auto_20180926_0948.py rename to hypha/apply/review/migrations/0012_auto_20180926_0948.py diff --git a/opentech/apply/review/migrations/0013_rename_fields.py b/hypha/apply/review/migrations/0013_rename_fields.py similarity index 100% rename from opentech/apply/review/migrations/0013_rename_fields.py rename to hypha/apply/review/migrations/0013_rename_fields.py diff --git a/opentech/apply/review/migrations/0014_add_markdown.py b/hypha/apply/review/migrations/0014_add_markdown.py similarity index 100% rename from opentech/apply/review/migrations/0014_add_markdown.py rename to hypha/apply/review/migrations/0014_add_markdown.py diff --git a/opentech/apply/review/migrations/0015_review_opinion.py b/hypha/apply/review/migrations/0015_review_opinion.py similarity index 100% rename from opentech/apply/review/migrations/0015_review_opinion.py rename to hypha/apply/review/migrations/0015_review_opinion.py diff --git a/opentech/apply/review/migrations/0016_review_visibility.py b/hypha/apply/review/migrations/0016_review_visibility.py similarity index 100% rename from opentech/apply/review/migrations/0016_review_visibility.py rename to hypha/apply/review/migrations/0016_review_visibility.py diff --git a/opentech/apply/review/migrations/0017_add_temp_author_field.py b/hypha/apply/review/migrations/0017_add_temp_author_field.py similarity index 100% rename from opentech/apply/review/migrations/0017_add_temp_author_field.py rename to hypha/apply/review/migrations/0017_add_temp_author_field.py diff --git a/opentech/apply/review/migrations/0018_migrate_author_data.py b/hypha/apply/review/migrations/0018_migrate_author_data.py similarity index 100% rename from opentech/apply/review/migrations/0018_migrate_author_data.py rename to hypha/apply/review/migrations/0018_migrate_author_data.py diff --git a/opentech/apply/review/migrations/0019_replace_existing_author_field.py b/hypha/apply/review/migrations/0019_replace_existing_author_field.py similarity index 100% rename from opentech/apply/review/migrations/0019_replace_existing_author_field.py rename to hypha/apply/review/migrations/0019_replace_existing_author_field.py diff --git a/opentech/apply/review/migrations/0020_review_score_calc_update.py b/hypha/apply/review/migrations/0020_review_score_calc_update.py similarity index 100% rename from opentech/apply/review/migrations/0020_review_score_calc_update.py rename to hypha/apply/review/migrations/0020_review_score_calc_update.py diff --git a/opentech/apply/review/migrations/0021_add_help_link_field.py b/hypha/apply/review/migrations/0021_add_help_link_field.py similarity index 100% rename from opentech/apply/review/migrations/0021_add_help_link_field.py rename to hypha/apply/review/migrations/0021_add_help_link_field.py diff --git a/opentech/apply/review/migrations/__init__.py b/hypha/apply/review/migrations/__init__.py similarity index 100% rename from opentech/apply/review/migrations/__init__.py rename to hypha/apply/review/migrations/__init__.py diff --git a/opentech/apply/review/models.py b/hypha/apply/review/models.py similarity index 100% rename from opentech/apply/review/models.py rename to hypha/apply/review/models.py diff --git a/opentech/apply/review/options.py b/hypha/apply/review/options.py similarity index 100% rename from opentech/apply/review/options.py rename to hypha/apply/review/options.py diff --git a/opentech/apply/review/templates/review/includes/review_button.html b/hypha/apply/review/templates/review/includes/review_button.html similarity index 100% rename from opentech/apply/review/templates/review/includes/review_button.html rename to hypha/apply/review/templates/review/includes/review_button.html diff --git a/opentech/apply/review/templates/review/includes/review_opinions_list.html b/hypha/apply/review/templates/review/includes/review_opinions_list.html similarity index 100% rename from opentech/apply/review/templates/review/includes/review_opinions_list.html rename to hypha/apply/review/templates/review/includes/review_opinions_list.html diff --git a/opentech/apply/review/templates/review/render_scored_answer_field.html b/hypha/apply/review/templates/review/render_scored_answer_field.html similarity index 100% rename from opentech/apply/review/templates/review/render_scored_answer_field.html rename to hypha/apply/review/templates/review/render_scored_answer_field.html diff --git a/opentech/apply/review/templates/review/review_confirm_delete.html b/hypha/apply/review/templates/review/review_confirm_delete.html similarity index 100% rename from opentech/apply/review/templates/review/review_confirm_delete.html rename to hypha/apply/review/templates/review/review_confirm_delete.html diff --git a/opentech/apply/review/templates/review/review_detail.html b/hypha/apply/review/templates/review/review_detail.html similarity index 100% rename from opentech/apply/review/templates/review/review_detail.html rename to hypha/apply/review/templates/review/review_detail.html diff --git a/opentech/apply/review/templates/review/review_edit_form.html b/hypha/apply/review/templates/review/review_edit_form.html similarity index 100% rename from opentech/apply/review/templates/review/review_edit_form.html rename to hypha/apply/review/templates/review/review_edit_form.html diff --git a/opentech/apply/review/templates/review/review_form.html b/hypha/apply/review/templates/review/review_form.html similarity index 100% rename from opentech/apply/review/templates/review/review_form.html rename to hypha/apply/review/templates/review/review_form.html diff --git a/opentech/apply/review/templates/review/review_list.html b/hypha/apply/review/templates/review/review_list.html similarity index 100% rename from opentech/apply/review/templates/review/review_list.html rename to hypha/apply/review/templates/review/review_list.html diff --git a/opentech/apply/review/templatetags/__init__.py b/hypha/apply/review/templatetags/__init__.py similarity index 100% rename from opentech/apply/review/templatetags/__init__.py rename to hypha/apply/review/templatetags/__init__.py diff --git a/opentech/apply/review/templatetags/review_tags.py b/hypha/apply/review/templatetags/review_tags.py similarity index 100% rename from opentech/apply/review/templatetags/review_tags.py rename to hypha/apply/review/templatetags/review_tags.py diff --git a/opentech/apply/review/tests/__init__.py b/hypha/apply/review/tests/__init__.py similarity index 100% rename from opentech/apply/review/tests/__init__.py rename to hypha/apply/review/tests/__init__.py diff --git a/opentech/apply/review/tests/factories/__init__.py b/hypha/apply/review/tests/factories/__init__.py similarity index 100% rename from opentech/apply/review/tests/factories/__init__.py rename to hypha/apply/review/tests/factories/__init__.py diff --git a/opentech/apply/review/tests/factories/blocks.py b/hypha/apply/review/tests/factories/blocks.py similarity index 100% rename from opentech/apply/review/tests/factories/blocks.py rename to hypha/apply/review/tests/factories/blocks.py diff --git a/opentech/apply/review/tests/factories/models.py b/hypha/apply/review/tests/factories/models.py similarity index 100% rename from opentech/apply/review/tests/factories/models.py rename to hypha/apply/review/tests/factories/models.py diff --git a/opentech/apply/review/tests/test_admin.py b/hypha/apply/review/tests/test_admin.py similarity index 100% rename from opentech/apply/review/tests/test_admin.py rename to hypha/apply/review/tests/test_admin.py diff --git a/opentech/apply/review/tests/test_models.py b/hypha/apply/review/tests/test_models.py similarity index 100% rename from opentech/apply/review/tests/test_models.py rename to hypha/apply/review/tests/test_models.py diff --git a/opentech/apply/review/tests/test_views.py b/hypha/apply/review/tests/test_views.py similarity index 100% rename from opentech/apply/review/tests/test_views.py rename to hypha/apply/review/tests/test_views.py diff --git a/opentech/apply/review/urls.py b/hypha/apply/review/urls.py similarity index 100% rename from opentech/apply/review/urls.py rename to hypha/apply/review/urls.py diff --git a/opentech/apply/review/views.py b/hypha/apply/review/views.py similarity index 100% rename from opentech/apply/review/views.py rename to hypha/apply/review/views.py diff --git a/opentech/apply/review/wagtail_hooks.py b/hypha/apply/review/wagtail_hooks.py similarity index 100% rename from opentech/apply/review/wagtail_hooks.py rename to hypha/apply/review/wagtail_hooks.py diff --git a/opentech/apply/stream_forms/__init__.py b/hypha/apply/stream_forms/__init__.py similarity index 100% rename from opentech/apply/stream_forms/__init__.py rename to hypha/apply/stream_forms/__init__.py diff --git a/opentech/apply/stream_forms/admin.py b/hypha/apply/stream_forms/admin.py similarity index 100% rename from opentech/apply/stream_forms/admin.py rename to hypha/apply/stream_forms/admin.py diff --git a/opentech/apply/stream_forms/apps.py b/hypha/apply/stream_forms/apps.py similarity index 100% rename from opentech/apply/stream_forms/apps.py rename to hypha/apply/stream_forms/apps.py diff --git a/opentech/apply/stream_forms/blocks.py b/hypha/apply/stream_forms/blocks.py similarity index 100% rename from opentech/apply/stream_forms/blocks.py rename to hypha/apply/stream_forms/blocks.py diff --git a/opentech/apply/stream_forms/fields.py b/hypha/apply/stream_forms/fields.py similarity index 100% rename from opentech/apply/stream_forms/fields.py rename to hypha/apply/stream_forms/fields.py diff --git a/opentech/apply/stream_forms/files.py b/hypha/apply/stream_forms/files.py similarity index 100% rename from opentech/apply/stream_forms/files.py rename to hypha/apply/stream_forms/files.py diff --git a/opentech/apply/stream_forms/forms.py b/hypha/apply/stream_forms/forms.py similarity index 100% rename from opentech/apply/stream_forms/forms.py rename to hypha/apply/stream_forms/forms.py diff --git a/opentech/apply/stream_forms/migrations/__init__.py b/hypha/apply/stream_forms/migrations/__init__.py similarity index 100% rename from opentech/apply/stream_forms/migrations/__init__.py rename to hypha/apply/stream_forms/migrations/__init__.py diff --git a/opentech/apply/stream_forms/models.py b/hypha/apply/stream_forms/models.py similarity index 100% rename from opentech/apply/stream_forms/models.py rename to hypha/apply/stream_forms/models.py diff --git a/opentech/apply/stream_forms/templates/stream_forms/fields/multi_file_field.html b/hypha/apply/stream_forms/templates/stream_forms/fields/multi_file_field.html similarity index 100% rename from opentech/apply/stream_forms/templates/stream_forms/fields/multi_file_field.html rename to hypha/apply/stream_forms/templates/stream_forms/fields/multi_file_field.html diff --git a/opentech/apply/stream_forms/templates/stream_forms/includes/file_field.html b/hypha/apply/stream_forms/templates/stream_forms/includes/file_field.html similarity index 100% rename from opentech/apply/stream_forms/templates/stream_forms/includes/file_field.html rename to hypha/apply/stream_forms/templates/stream_forms/includes/file_field.html diff --git a/opentech/apply/stream_forms/templates/stream_forms/render_field.html b/hypha/apply/stream_forms/templates/stream_forms/render_field.html similarity index 100% rename from opentech/apply/stream_forms/templates/stream_forms/render_field.html rename to hypha/apply/stream_forms/templates/stream_forms/render_field.html diff --git a/opentech/apply/stream_forms/templates/stream_forms/render_file_field.html b/hypha/apply/stream_forms/templates/stream_forms/render_file_field.html similarity index 100% rename from opentech/apply/stream_forms/templates/stream_forms/render_file_field.html rename to hypha/apply/stream_forms/templates/stream_forms/render_file_field.html diff --git a/opentech/apply/stream_forms/templates/stream_forms/render_list_field.html b/hypha/apply/stream_forms/templates/stream_forms/render_list_field.html similarity index 100% rename from opentech/apply/stream_forms/templates/stream_forms/render_list_field.html rename to hypha/apply/stream_forms/templates/stream_forms/render_list_field.html diff --git a/opentech/apply/stream_forms/templates/stream_forms/render_markdown_field.html b/hypha/apply/stream_forms/templates/stream_forms/render_markdown_field.html similarity index 100% rename from opentech/apply/stream_forms/templates/stream_forms/render_markdown_field.html rename to hypha/apply/stream_forms/templates/stream_forms/render_markdown_field.html diff --git a/opentech/apply/stream_forms/templates/stream_forms/render_multi_file_field.html b/hypha/apply/stream_forms/templates/stream_forms/render_multi_file_field.html similarity index 100% rename from opentech/apply/stream_forms/templates/stream_forms/render_multi_file_field.html rename to hypha/apply/stream_forms/templates/stream_forms/render_multi_file_field.html diff --git a/opentech/apply/stream_forms/templates/stream_forms/render_unsafe_field.html b/hypha/apply/stream_forms/templates/stream_forms/render_unsafe_field.html similarity index 100% rename from opentech/apply/stream_forms/templates/stream_forms/render_unsafe_field.html rename to hypha/apply/stream_forms/templates/stream_forms/render_unsafe_field.html diff --git a/opentech/apply/stream_forms/testing/__init__.py b/hypha/apply/stream_forms/testing/__init__.py similarity index 100% rename from opentech/apply/stream_forms/testing/__init__.py rename to hypha/apply/stream_forms/testing/__init__.py diff --git a/opentech/apply/stream_forms/testing/factories.py b/hypha/apply/stream_forms/testing/factories.py similarity index 100% rename from opentech/apply/stream_forms/testing/factories.py rename to hypha/apply/stream_forms/testing/factories.py diff --git a/opentech/apply/stream_forms/tests.py b/hypha/apply/stream_forms/tests.py similarity index 100% rename from opentech/apply/stream_forms/tests.py rename to hypha/apply/stream_forms/tests.py diff --git a/opentech/apply/stream_forms/views.py b/hypha/apply/stream_forms/views.py similarity index 100% rename from opentech/apply/stream_forms/views.py rename to hypha/apply/stream_forms/views.py diff --git a/opentech/apply/templates/forms/includes/field.html b/hypha/apply/templates/forms/includes/field.html similarity index 100% rename from opentech/apply/templates/forms/includes/field.html rename to hypha/apply/templates/forms/includes/field.html diff --git a/opentech/apply/templates/forms/includes/form_errors.html b/hypha/apply/templates/forms/includes/form_errors.html similarity index 100% rename from opentech/apply/templates/forms/includes/form_errors.html rename to hypha/apply/templates/forms/includes/form_errors.html diff --git a/opentech/apply/urls.py b/hypha/apply/urls.py similarity index 100% rename from opentech/apply/urls.py rename to hypha/apply/urls.py diff --git a/opentech/apply/users/__init__.py b/hypha/apply/users/__init__.py similarity index 100% rename from opentech/apply/users/__init__.py rename to hypha/apply/users/__init__.py diff --git a/opentech/apply/users/admin_views.py b/hypha/apply/users/admin_views.py similarity index 100% rename from opentech/apply/users/admin_views.py rename to hypha/apply/users/admin_views.py diff --git a/opentech/apply/users/decorators.py b/hypha/apply/users/decorators.py similarity index 100% rename from opentech/apply/users/decorators.py rename to hypha/apply/users/decorators.py diff --git a/opentech/apply/users/forms.py b/hypha/apply/users/forms.py similarity index 100% rename from opentech/apply/users/forms.py rename to hypha/apply/users/forms.py diff --git a/opentech/apply/users/groups.py b/hypha/apply/users/groups.py similarity index 100% rename from opentech/apply/users/groups.py rename to hypha/apply/users/groups.py diff --git a/opentech/apply/users/management/__init__.py b/hypha/apply/users/management/__init__.py similarity index 100% rename from opentech/apply/users/management/__init__.py rename to hypha/apply/users/management/__init__.py diff --git a/opentech/apply/users/management/commands/__init__.py b/hypha/apply/users/management/commands/__init__.py similarity index 100% rename from opentech/apply/users/management/commands/__init__.py rename to hypha/apply/users/management/commands/__init__.py diff --git a/opentech/apply/users/management/commands/migrate_users.py b/hypha/apply/users/management/commands/migrate_users.py similarity index 100% rename from opentech/apply/users/management/commands/migrate_users.py rename to hypha/apply/users/management/commands/migrate_users.py diff --git a/opentech/apply/users/middleware.py b/hypha/apply/users/middleware.py similarity index 100% rename from opentech/apply/users/middleware.py rename to hypha/apply/users/middleware.py diff --git a/opentech/apply/users/migrations/0001_initial.py b/hypha/apply/users/migrations/0001_initial.py similarity index 100% rename from opentech/apply/users/migrations/0001_initial.py rename to hypha/apply/users/migrations/0001_initial.py diff --git a/opentech/apply/users/migrations/0002_initial_data.py b/hypha/apply/users/migrations/0002_initial_data.py similarity index 100% rename from opentech/apply/users/migrations/0002_initial_data.py rename to hypha/apply/users/migrations/0002_initial_data.py diff --git a/opentech/apply/users/migrations/0003_make_email_username.py b/hypha/apply/users/migrations/0003_make_email_username.py similarity index 100% rename from opentech/apply/users/migrations/0003_make_email_username.py rename to hypha/apply/users/migrations/0003_make_email_username.py diff --git a/opentech/apply/users/migrations/0004_drop_first_last_names.py b/hypha/apply/users/migrations/0004_drop_first_last_names.py similarity index 100% rename from opentech/apply/users/migrations/0004_drop_first_last_names.py rename to hypha/apply/users/migrations/0004_drop_first_last_names.py diff --git a/opentech/apply/users/migrations/0005_user_drupal_id.py b/hypha/apply/users/migrations/0005_user_drupal_id.py similarity index 100% rename from opentech/apply/users/migrations/0005_user_drupal_id.py rename to hypha/apply/users/migrations/0005_user_drupal_id.py diff --git a/opentech/apply/users/migrations/0006_update_the_ordering_of_users.py b/hypha/apply/users/migrations/0006_update_the_ordering_of_users.py similarity index 100% rename from opentech/apply/users/migrations/0006_update_the_ordering_of_users.py rename to hypha/apply/users/migrations/0006_update_the_ordering_of_users.py diff --git a/opentech/apply/users/migrations/0007_user_slack.py b/hypha/apply/users/migrations/0007_user_slack.py similarity index 100% rename from opentech/apply/users/migrations/0007_user_slack.py rename to hypha/apply/users/migrations/0007_user_slack.py diff --git a/opentech/apply/users/migrations/0008_add_staff_permissions.py b/hypha/apply/users/migrations/0008_add_staff_permissions.py similarity index 100% rename from opentech/apply/users/migrations/0008_add_staff_permissions.py rename to hypha/apply/users/migrations/0008_add_staff_permissions.py diff --git a/opentech/apply/users/migrations/0009_add_partner_group.py b/hypha/apply/users/migrations/0009_add_partner_group.py similarity index 100% rename from opentech/apply/users/migrations/0009_add_partner_group.py rename to hypha/apply/users/migrations/0009_add_partner_group.py diff --git a/opentech/apply/users/migrations/0010_add_community_reviewer_group.py b/hypha/apply/users/migrations/0010_add_community_reviewer_group.py similarity index 100% rename from opentech/apply/users/migrations/0010_add_community_reviewer_group.py rename to hypha/apply/users/migrations/0010_add_community_reviewer_group.py diff --git a/opentech/apply/users/migrations/0011_add_applicant_group.py b/hypha/apply/users/migrations/0011_add_applicant_group.py similarity index 100% rename from opentech/apply/users/migrations/0011_add_applicant_group.py rename to hypha/apply/users/migrations/0011_add_applicant_group.py diff --git a/opentech/apply/users/migrations/0012_set_applicant_group.py b/hypha/apply/users/migrations/0012_set_applicant_group.py similarity index 100% rename from opentech/apply/users/migrations/0012_set_applicant_group.py rename to hypha/apply/users/migrations/0012_set_applicant_group.py diff --git a/opentech/apply/users/migrations/0013_add_approver_group.py b/hypha/apply/users/migrations/0013_add_approver_group.py similarity index 100% rename from opentech/apply/users/migrations/0013_add_approver_group.py rename to hypha/apply/users/migrations/0013_add_approver_group.py diff --git a/opentech/apply/users/migrations/__init__.py b/hypha/apply/users/migrations/__init__.py similarity index 100% rename from opentech/apply/users/migrations/__init__.py rename to hypha/apply/users/migrations/__init__.py diff --git a/opentech/apply/users/models.py b/hypha/apply/users/models.py similarity index 100% rename from opentech/apply/users/models.py rename to hypha/apply/users/models.py diff --git a/opentech/apply/users/pipeline.py b/hypha/apply/users/pipeline.py similarity index 100% rename from opentech/apply/users/pipeline.py rename to hypha/apply/users/pipeline.py diff --git a/opentech/apply/users/templates/two_factor/_base.html b/hypha/apply/users/templates/two_factor/_base.html similarity index 100% rename from opentech/apply/users/templates/two_factor/_base.html rename to hypha/apply/users/templates/two_factor/_base.html diff --git a/opentech/apply/users/templates/two_factor/_base_focus.html b/hypha/apply/users/templates/two_factor/_base_focus.html similarity index 100% rename from opentech/apply/users/templates/two_factor/_base_focus.html rename to hypha/apply/users/templates/two_factor/_base_focus.html diff --git a/opentech/apply/users/templates/two_factor/_wizard_actions.html b/hypha/apply/users/templates/two_factor/_wizard_actions.html similarity index 100% rename from opentech/apply/users/templates/two_factor/_wizard_actions.html rename to hypha/apply/users/templates/two_factor/_wizard_actions.html diff --git a/opentech/apply/users/templates/users/account.html b/hypha/apply/users/templates/users/account.html similarity index 100% rename from opentech/apply/users/templates/users/account.html rename to hypha/apply/users/templates/users/account.html diff --git a/opentech/apply/users/templates/users/activation/email.txt b/hypha/apply/users/templates/users/activation/email.txt similarity index 100% rename from opentech/apply/users/templates/users/activation/email.txt rename to hypha/apply/users/templates/users/activation/email.txt diff --git a/opentech/apply/users/templates/users/activation/invalid.html b/hypha/apply/users/templates/users/activation/invalid.html similarity index 100% rename from opentech/apply/users/templates/users/activation/invalid.html rename to hypha/apply/users/templates/users/activation/invalid.html diff --git a/opentech/apply/users/templates/users/change_password.html b/hypha/apply/users/templates/users/change_password.html similarity index 100% rename from opentech/apply/users/templates/users/change_password.html rename to hypha/apply/users/templates/users/change_password.html diff --git a/opentech/apply/users/templates/users/login.html b/hypha/apply/users/templates/users/login.html similarity index 100% rename from opentech/apply/users/templates/users/login.html rename to hypha/apply/users/templates/users/login.html diff --git a/opentech/apply/users/templates/users/oauth.html b/hypha/apply/users/templates/users/oauth.html similarity index 100% rename from opentech/apply/users/templates/users/oauth.html rename to hypha/apply/users/templates/users/oauth.html diff --git a/opentech/apply/users/templates/users/password_reset/complete.html b/hypha/apply/users/templates/users/password_reset/complete.html similarity index 100% rename from opentech/apply/users/templates/users/password_reset/complete.html rename to hypha/apply/users/templates/users/password_reset/complete.html diff --git a/opentech/apply/users/templates/users/password_reset/confirm.html b/hypha/apply/users/templates/users/password_reset/confirm.html similarity index 100% rename from opentech/apply/users/templates/users/password_reset/confirm.html rename to hypha/apply/users/templates/users/password_reset/confirm.html diff --git a/opentech/apply/users/templates/users/password_reset/done.html b/hypha/apply/users/templates/users/password_reset/done.html similarity index 100% rename from opentech/apply/users/templates/users/password_reset/done.html rename to hypha/apply/users/templates/users/password_reset/done.html diff --git a/opentech/apply/users/templates/users/password_reset/email.txt b/hypha/apply/users/templates/users/password_reset/email.txt similarity index 100% rename from opentech/apply/users/templates/users/password_reset/email.txt rename to hypha/apply/users/templates/users/password_reset/email.txt diff --git a/opentech/apply/users/templates/users/password_reset/form.html b/hypha/apply/users/templates/users/password_reset/form.html similarity index 100% rename from opentech/apply/users/templates/users/password_reset/form.html rename to hypha/apply/users/templates/users/password_reset/form.html diff --git a/opentech/apply/users/templates/wagtailusers/users/create.html b/hypha/apply/users/templates/wagtailusers/users/create.html similarity index 100% rename from opentech/apply/users/templates/wagtailusers/users/create.html rename to hypha/apply/users/templates/wagtailusers/users/create.html diff --git a/opentech/apply/users/templates/wagtailusers/users/edit.html b/hypha/apply/users/templates/wagtailusers/users/edit.html similarity index 100% rename from opentech/apply/users/templates/wagtailusers/users/edit.html rename to hypha/apply/users/templates/wagtailusers/users/edit.html diff --git a/opentech/apply/users/templates/wagtailusers/users/list.html b/hypha/apply/users/templates/wagtailusers/users/list.html similarity index 100% rename from opentech/apply/users/templates/wagtailusers/users/list.html rename to hypha/apply/users/templates/wagtailusers/users/list.html diff --git a/opentech/apply/users/templatetags/__init__.py b/hypha/apply/users/templatetags/__init__.py similarity index 100% rename from opentech/apply/users/templatetags/__init__.py rename to hypha/apply/users/templatetags/__init__.py diff --git a/opentech/apply/users/templatetags/users_tags.py b/hypha/apply/users/templatetags/users_tags.py similarity index 100% rename from opentech/apply/users/templatetags/users_tags.py rename to hypha/apply/users/templatetags/users_tags.py diff --git a/opentech/apply/users/tests/__init__.py b/hypha/apply/users/tests/__init__.py similarity index 100% rename from opentech/apply/users/tests/__init__.py rename to hypha/apply/users/tests/__init__.py diff --git a/opentech/apply/users/tests/factories.py b/hypha/apply/users/tests/factories.py similarity index 100% rename from opentech/apply/users/tests/factories.py rename to hypha/apply/users/tests/factories.py diff --git a/opentech/apply/users/tests/test_forms.py b/hypha/apply/users/tests/test_forms.py similarity index 100% rename from opentech/apply/users/tests/test_forms.py rename to hypha/apply/users/tests/test_forms.py diff --git a/opentech/apply/users/tests/test_oauth_access.py b/hypha/apply/users/tests/test_oauth_access.py similarity index 100% rename from opentech/apply/users/tests/test_oauth_access.py rename to hypha/apply/users/tests/test_oauth_access.py diff --git a/opentech/apply/users/tests/test_utils.py b/hypha/apply/users/tests/test_utils.py similarity index 100% rename from opentech/apply/users/tests/test_utils.py rename to hypha/apply/users/tests/test_utils.py diff --git a/opentech/apply/users/tests/test_views.py b/hypha/apply/users/tests/test_views.py similarity index 100% rename from opentech/apply/users/tests/test_views.py rename to hypha/apply/users/tests/test_views.py diff --git a/opentech/apply/users/urls.py b/hypha/apply/users/urls.py similarity index 100% rename from opentech/apply/users/urls.py rename to hypha/apply/users/urls.py diff --git a/opentech/apply/users/utils.py b/hypha/apply/users/utils.py similarity index 100% rename from opentech/apply/users/utils.py rename to hypha/apply/users/utils.py diff --git a/opentech/apply/users/views.py b/hypha/apply/users/views.py similarity index 100% rename from opentech/apply/users/views.py rename to hypha/apply/users/views.py diff --git a/opentech/apply/users/wagtail_hooks.py b/hypha/apply/users/wagtail_hooks.py similarity index 100% rename from opentech/apply/users/wagtail_hooks.py rename to hypha/apply/users/wagtail_hooks.py diff --git a/opentech/apply/utils/__init__.py b/hypha/apply/utils/__init__.py similarity index 100% rename from opentech/apply/utils/__init__.py rename to hypha/apply/utils/__init__.py diff --git a/opentech/apply/utils/admin.py b/hypha/apply/utils/admin.py similarity index 100% rename from opentech/apply/utils/admin.py rename to hypha/apply/utils/admin.py diff --git a/opentech/apply/utils/app.py b/hypha/apply/utils/app.py similarity index 100% rename from opentech/apply/utils/app.py rename to hypha/apply/utils/app.py diff --git a/opentech/apply/utils/blocks.py b/hypha/apply/utils/blocks.py similarity index 100% rename from opentech/apply/utils/blocks.py rename to hypha/apply/utils/blocks.py diff --git a/opentech/apply/utils/fields.py b/hypha/apply/utils/fields.py similarity index 100% rename from opentech/apply/utils/fields.py rename to hypha/apply/utils/fields.py diff --git a/opentech/apply/utils/image.py b/hypha/apply/utils/image.py similarity index 100% rename from opentech/apply/utils/image.py rename to hypha/apply/utils/image.py diff --git a/opentech/apply/utils/media/fonts/Montserrat-Bold.ttf b/hypha/apply/utils/media/fonts/Montserrat-Bold.ttf similarity index 100% rename from opentech/apply/utils/media/fonts/Montserrat-Bold.ttf rename to hypha/apply/utils/media/fonts/Montserrat-Bold.ttf diff --git a/opentech/apply/utils/media/fonts/Montserrat-BoldItalic.ttf b/hypha/apply/utils/media/fonts/Montserrat-BoldItalic.ttf similarity index 100% rename from opentech/apply/utils/media/fonts/Montserrat-BoldItalic.ttf rename to hypha/apply/utils/media/fonts/Montserrat-BoldItalic.ttf diff --git a/opentech/apply/utils/media/fonts/Montserrat-Italic.ttf b/hypha/apply/utils/media/fonts/Montserrat-Italic.ttf similarity index 100% rename from opentech/apply/utils/media/fonts/Montserrat-Italic.ttf rename to hypha/apply/utils/media/fonts/Montserrat-Italic.ttf diff --git a/opentech/apply/utils/media/fonts/Montserrat-Regular.ttf b/hypha/apply/utils/media/fonts/Montserrat-Regular.ttf similarity index 100% rename from opentech/apply/utils/media/fonts/Montserrat-Regular.ttf rename to hypha/apply/utils/media/fonts/Montserrat-Regular.ttf diff --git a/opentech/apply/utils/media/fonts/NotoSans-Bold.ttf b/hypha/apply/utils/media/fonts/NotoSans-Bold.ttf similarity index 100% rename from opentech/apply/utils/media/fonts/NotoSans-Bold.ttf rename to hypha/apply/utils/media/fonts/NotoSans-Bold.ttf diff --git a/opentech/apply/utils/media/fonts/NotoSans-BoldItalic.ttf b/hypha/apply/utils/media/fonts/NotoSans-BoldItalic.ttf similarity index 100% rename from opentech/apply/utils/media/fonts/NotoSans-BoldItalic.ttf rename to hypha/apply/utils/media/fonts/NotoSans-BoldItalic.ttf diff --git a/opentech/apply/utils/media/fonts/NotoSans-Italic.ttf b/hypha/apply/utils/media/fonts/NotoSans-Italic.ttf similarity index 100% rename from opentech/apply/utils/media/fonts/NotoSans-Italic.ttf rename to hypha/apply/utils/media/fonts/NotoSans-Italic.ttf diff --git a/opentech/apply/utils/media/fonts/NotoSans-Regular.ttf b/hypha/apply/utils/media/fonts/NotoSans-Regular.ttf similarity index 100% rename from opentech/apply/utils/media/fonts/NotoSans-Regular.ttf rename to hypha/apply/utils/media/fonts/NotoSans-Regular.ttf diff --git a/opentech/apply/utils/notifications.py b/hypha/apply/utils/notifications.py similarity index 100% rename from opentech/apply/utils/notifications.py rename to hypha/apply/utils/notifications.py diff --git a/opentech/apply/utils/options.py b/hypha/apply/utils/options.py similarity index 100% rename from opentech/apply/utils/options.py rename to hypha/apply/utils/options.py diff --git a/opentech/apply/utils/pdfs.py b/hypha/apply/utils/pdfs.py similarity index 100% rename from opentech/apply/utils/pdfs.py rename to hypha/apply/utils/pdfs.py diff --git a/opentech/apply/utils/storage.py b/hypha/apply/utils/storage.py similarity index 100% rename from opentech/apply/utils/storage.py rename to hypha/apply/utils/storage.py diff --git a/opentech/apply/utils/templates/apply/404.html b/hypha/apply/utils/templates/apply/404.html similarity index 100% rename from opentech/apply/utils/templates/apply/404.html rename to hypha/apply/utils/templates/apply/404.html diff --git a/opentech/apply/utils/templatetags/__init__.py b/hypha/apply/utils/templatetags/__init__.py similarity index 100% rename from opentech/apply/utils/templatetags/__init__.py rename to hypha/apply/utils/templatetags/__init__.py diff --git a/opentech/apply/utils/templatetags/apply_tags.py b/hypha/apply/utils/templatetags/apply_tags.py similarity index 100% rename from opentech/apply/utils/templatetags/apply_tags.py rename to hypha/apply/utils/templatetags/apply_tags.py diff --git a/opentech/apply/utils/testing/__init__.py b/hypha/apply/utils/testing/__init__.py similarity index 100% rename from opentech/apply/utils/testing/__init__.py rename to hypha/apply/utils/testing/__init__.py diff --git a/opentech/apply/utils/testing/factories.py b/hypha/apply/utils/testing/factories.py similarity index 100% rename from opentech/apply/utils/testing/factories.py rename to hypha/apply/utils/testing/factories.py diff --git a/opentech/apply/utils/testing/tests.py b/hypha/apply/utils/testing/tests.py similarity index 100% rename from opentech/apply/utils/testing/tests.py rename to hypha/apply/utils/testing/tests.py diff --git a/opentech/apply/utils/tests/test_views.py b/hypha/apply/utils/tests/test_views.py similarity index 100% rename from opentech/apply/utils/tests/test_views.py rename to hypha/apply/utils/tests/test_views.py diff --git a/opentech/apply/utils/views.py b/hypha/apply/utils/views.py similarity index 100% rename from opentech/apply/utils/views.py rename to hypha/apply/utils/views.py diff --git a/opentech/images/__init__.py b/hypha/images/__init__.py similarity index 100% rename from opentech/images/__init__.py rename to hypha/images/__init__.py diff --git a/opentech/images/migrations/0001_initial.py b/hypha/images/migrations/0001_initial.py similarity index 100% rename from opentech/images/migrations/0001_initial.py rename to hypha/images/migrations/0001_initial.py diff --git a/opentech/images/migrations/0002_customimage_file_hash.py b/hypha/images/migrations/0002_customimage_file_hash.py similarity index 100% rename from opentech/images/migrations/0002_customimage_file_hash.py rename to hypha/images/migrations/0002_customimage_file_hash.py diff --git a/opentech/images/migrations/0003_customimage_drupal_id.py b/hypha/images/migrations/0003_customimage_drupal_id.py similarity index 100% rename from opentech/images/migrations/0003_customimage_drupal_id.py rename to hypha/images/migrations/0003_customimage_drupal_id.py diff --git a/opentech/images/migrations/__init__.py b/hypha/images/migrations/__init__.py similarity index 100% rename from opentech/images/migrations/__init__.py rename to hypha/images/migrations/__init__.py diff --git a/opentech/images/models.py b/hypha/images/models.py similarity index 100% rename from opentech/images/models.py rename to hypha/images/models.py diff --git a/opentech/public/__init__.py b/hypha/public/__init__.py similarity index 100% rename from opentech/public/__init__.py rename to hypha/public/__init__.py diff --git a/opentech/public/forms/__init__.py b/hypha/public/forms/__init__.py similarity index 100% rename from opentech/public/forms/__init__.py rename to hypha/public/forms/__init__.py diff --git a/opentech/public/forms/apps.py b/hypha/public/forms/apps.py similarity index 100% rename from opentech/public/forms/apps.py rename to hypha/public/forms/apps.py diff --git a/opentech/public/forms/migrations/0001_initial.py b/hypha/public/forms/migrations/0001_initial.py similarity index 100% rename from opentech/public/forms/migrations/0001_initial.py rename to hypha/public/forms/migrations/0001_initial.py diff --git a/opentech/public/forms/migrations/0002_add_document_choice.py b/hypha/public/forms/migrations/0002_add_document_choice.py similarity index 100% rename from opentech/public/forms/migrations/0002_add_document_choice.py rename to hypha/public/forms/migrations/0002_add_document_choice.py diff --git a/opentech/public/forms/migrations/__init__.py b/hypha/public/forms/migrations/__init__.py similarity index 100% rename from opentech/public/forms/migrations/__init__.py rename to hypha/public/forms/migrations/__init__.py diff --git a/opentech/public/forms/models.py b/hypha/public/forms/models.py similarity index 100% rename from opentech/public/forms/models.py rename to hypha/public/forms/models.py diff --git a/opentech/public/forms/templates/public_forms/form_page.html b/hypha/public/forms/templates/public_forms/form_page.html similarity index 100% rename from opentech/public/forms/templates/public_forms/form_page.html rename to hypha/public/forms/templates/public_forms/form_page.html diff --git a/opentech/public/forms/templates/public_forms/form_page_landing.html b/hypha/public/forms/templates/public_forms/form_page_landing.html similarity index 100% rename from opentech/public/forms/templates/public_forms/form_page_landing.html rename to hypha/public/forms/templates/public_forms/form_page_landing.html diff --git a/opentech/public/forms/wagtail_hooks.py b/hypha/public/forms/wagtail_hooks.py similarity index 100% rename from opentech/public/forms/wagtail_hooks.py rename to hypha/public/forms/wagtail_hooks.py diff --git a/opentech/public/funds/__init__.py b/hypha/public/funds/__init__.py similarity index 100% rename from opentech/public/funds/__init__.py rename to hypha/public/funds/__init__.py diff --git a/opentech/public/funds/admin.py b/hypha/public/funds/admin.py similarity index 100% rename from opentech/public/funds/admin.py rename to hypha/public/funds/admin.py diff --git a/opentech/public/funds/apps.py b/hypha/public/funds/apps.py similarity index 100% rename from opentech/public/funds/apps.py rename to hypha/public/funds/apps.py diff --git a/opentech/public/funds/blocks.py b/hypha/public/funds/blocks.py similarity index 100% rename from opentech/public/funds/blocks.py rename to hypha/public/funds/blocks.py diff --git a/opentech/public/funds/migrations/0001_initial.py b/hypha/public/funds/migrations/0001_initial.py similarity index 100% rename from opentech/public/funds/migrations/0001_initial.py rename to hypha/public/funds/migrations/0001_initial.py diff --git a/opentech/public/funds/migrations/0002_labindex_labpage.py b/hypha/public/funds/migrations/0002_labindex_labpage.py similarity index 100% rename from opentech/public/funds/migrations/0002_labindex_labpage.py rename to hypha/public/funds/migrations/0002_labindex_labpage.py diff --git a/opentech/public/funds/migrations/0003_icon_and_related_pages.py b/hypha/public/funds/migrations/0003_icon_and_related_pages.py similarity index 100% rename from opentech/public/funds/migrations/0003_icon_and_related_pages.py rename to hypha/public/funds/migrations/0003_icon_and_related_pages.py diff --git a/opentech/public/funds/migrations/0004_fundpagerelatedpage.py b/hypha/public/funds/migrations/0004_fundpagerelatedpage.py similarity index 100% rename from opentech/public/funds/migrations/0004_fundpagerelatedpage.py rename to hypha/public/funds/migrations/0004_fundpagerelatedpage.py diff --git a/opentech/public/funds/migrations/0005_link_text_optional.py b/hypha/public/funds/migrations/0005_link_text_optional.py similarity index 100% rename from opentech/public/funds/migrations/0005_link_text_optional.py rename to hypha/public/funds/migrations/0005_link_text_optional.py diff --git a/opentech/public/funds/migrations/0006_fundindex_introduction.py b/hypha/public/funds/migrations/0006_fundindex_introduction.py similarity index 100% rename from opentech/public/funds/migrations/0006_fundindex_introduction.py rename to hypha/public/funds/migrations/0006_fundindex_introduction.py diff --git a/opentech/public/funds/migrations/0007_add_rfp_models_for_public.py b/hypha/public/funds/migrations/0007_add_rfp_models_for_public.py similarity index 100% rename from opentech/public/funds/migrations/0007_add_rfp_models_for_public.py rename to hypha/public/funds/migrations/0007_add_rfp_models_for_public.py diff --git a/opentech/public/funds/migrations/0008_recreate_pages.py b/hypha/public/funds/migrations/0008_recreate_pages.py similarity index 100% rename from opentech/public/funds/migrations/0008_recreate_pages.py rename to hypha/public/funds/migrations/0008_recreate_pages.py diff --git a/opentech/public/funds/migrations/0009_allow_mailto_in_linkfield.py b/hypha/public/funds/migrations/0009_allow_mailto_in_linkfield.py similarity index 100% rename from opentech/public/funds/migrations/0009_allow_mailto_in_linkfield.py rename to hypha/public/funds/migrations/0009_allow_mailto_in_linkfield.py diff --git a/opentech/public/funds/migrations/0010_correct_related_page_required.py b/hypha/public/funds/migrations/0010_correct_related_page_required.py similarity index 100% rename from opentech/public/funds/migrations/0010_correct_related_page_required.py rename to hypha/public/funds/migrations/0010_correct_related_page_required.py diff --git a/opentech/public/funds/migrations/0011_opencallindexpage.py b/hypha/public/funds/migrations/0011_opencallindexpage.py similarity index 100% rename from opentech/public/funds/migrations/0011_opencallindexpage.py rename to hypha/public/funds/migrations/0011_opencallindexpage.py diff --git a/opentech/public/funds/migrations/0012_add_box_apply_link_fields.py b/hypha/public/funds/migrations/0012_add_box_apply_link_fields.py similarity index 100% rename from opentech/public/funds/migrations/0012_add_box_apply_link_fields.py rename to hypha/public/funds/migrations/0012_add_box_apply_link_fields.py diff --git a/opentech/public/funds/migrations/__init__.py b/hypha/public/funds/migrations/__init__.py similarity index 100% rename from opentech/public/funds/migrations/__init__.py rename to hypha/public/funds/migrations/__init__.py diff --git a/opentech/public/funds/models.py b/hypha/public/funds/models.py similarity index 100% rename from opentech/public/funds/models.py rename to hypha/public/funds/models.py diff --git a/opentech/public/funds/templates/public_funds/blocks/related_projects.html b/hypha/public/funds/templates/public_funds/blocks/related_projects.html similarity index 100% rename from opentech/public/funds/templates/public_funds/blocks/related_projects.html rename to hypha/public/funds/templates/public_funds/blocks/related_projects.html diff --git a/opentech/public/funds/templates/public_funds/blocks/related_reviewers.html b/hypha/public/funds/templates/public_funds/blocks/related_reviewers.html similarity index 100% rename from opentech/public/funds/templates/public_funds/blocks/related_reviewers.html rename to hypha/public/funds/templates/public_funds/blocks/related_reviewers.html diff --git a/opentech/public/funds/templates/public_funds/fund_index.html b/hypha/public/funds/templates/public_funds/fund_index.html similarity index 100% rename from opentech/public/funds/templates/public_funds/fund_index.html rename to hypha/public/funds/templates/public_funds/fund_index.html diff --git a/opentech/public/funds/templates/public_funds/fund_page.html b/hypha/public/funds/templates/public_funds/fund_page.html similarity index 100% rename from opentech/public/funds/templates/public_funds/fund_page.html rename to hypha/public/funds/templates/public_funds/fund_page.html diff --git a/opentech/public/funds/templates/public_funds/includes/fund_apply_cta.html b/hypha/public/funds/templates/public_funds/includes/fund_apply_cta.html similarity index 100% rename from opentech/public/funds/templates/public_funds/includes/fund_apply_cta.html rename to hypha/public/funds/templates/public_funds/includes/fund_apply_cta.html diff --git a/opentech/public/funds/templates/public_funds/includes/lab_apply_cta.html b/hypha/public/funds/templates/public_funds/includes/lab_apply_cta.html similarity index 100% rename from opentech/public/funds/templates/public_funds/includes/lab_apply_cta.html rename to hypha/public/funds/templates/public_funds/includes/lab_apply_cta.html diff --git a/opentech/public/funds/templates/public_funds/includes/project_listing.html b/hypha/public/funds/templates/public_funds/includes/project_listing.html similarity index 100% rename from opentech/public/funds/templates/public_funds/includes/project_listing.html rename to hypha/public/funds/templates/public_funds/includes/project_listing.html diff --git a/opentech/public/funds/templates/public_funds/includes/reviewer_listing.html b/hypha/public/funds/templates/public_funds/includes/reviewer_listing.html similarity index 100% rename from opentech/public/funds/templates/public_funds/includes/reviewer_listing.html rename to hypha/public/funds/templates/public_funds/includes/reviewer_listing.html diff --git a/opentech/public/funds/templates/public_funds/lab_index.html b/hypha/public/funds/templates/public_funds/lab_index.html similarity index 100% rename from opentech/public/funds/templates/public_funds/lab_index.html rename to hypha/public/funds/templates/public_funds/lab_index.html diff --git a/opentech/public/funds/templates/public_funds/lab_page.html b/hypha/public/funds/templates/public_funds/lab_page.html similarity index 100% rename from opentech/public/funds/templates/public_funds/lab_page.html rename to hypha/public/funds/templates/public_funds/lab_page.html diff --git a/opentech/public/funds/templates/public_funds/open_call_index_page.html b/hypha/public/funds/templates/public_funds/open_call_index_page.html similarity index 100% rename from opentech/public/funds/templates/public_funds/open_call_index_page.html rename to hypha/public/funds/templates/public_funds/open_call_index_page.html diff --git a/opentech/public/funds/tests.py b/hypha/public/funds/tests.py similarity index 100% rename from opentech/public/funds/tests.py rename to hypha/public/funds/tests.py diff --git a/opentech/public/funds/views.py b/hypha/public/funds/views.py similarity index 100% rename from opentech/public/funds/views.py rename to hypha/public/funds/views.py diff --git a/opentech/public/home/__init__.py b/hypha/public/home/__init__.py similarity index 100% rename from opentech/public/home/__init__.py rename to hypha/public/home/__init__.py diff --git a/opentech/public/home/blocks.py b/hypha/public/home/blocks.py similarity index 100% rename from opentech/public/home/blocks.py rename to hypha/public/home/blocks.py diff --git a/opentech/public/home/management/commands/wagtailsiteupdate.py b/hypha/public/home/management/commands/wagtailsiteupdate.py similarity index 100% rename from opentech/public/home/management/commands/wagtailsiteupdate.py rename to hypha/public/home/management/commands/wagtailsiteupdate.py diff --git a/opentech/public/home/migrations/0001_initial.py b/hypha/public/home/migrations/0001_initial.py similarity index 100% rename from opentech/public/home/migrations/0001_initial.py rename to hypha/public/home/migrations/0001_initial.py diff --git a/opentech/public/home/migrations/0002_create_homepage.py b/hypha/public/home/migrations/0002_create_homepage.py similarity index 100% rename from opentech/public/home/migrations/0002_create_homepage.py rename to hypha/public/home/migrations/0002_create_homepage.py diff --git a/opentech/public/home/migrations/0003_homepage_header_image.py b/hypha/public/home/migrations/0003_homepage_header_image.py similarity index 100% rename from opentech/public/home/migrations/0003_homepage_header_image.py rename to hypha/public/home/migrations/0003_homepage_header_image.py diff --git a/opentech/public/home/migrations/0004_add_related_models_to_homepage.py b/hypha/public/home/migrations/0004_add_related_models_to_homepage.py similarity index 100% rename from opentech/public/home/migrations/0004_add_related_models_to_homepage.py rename to hypha/public/home/migrations/0004_add_related_models_to_homepage.py diff --git a/opentech/public/home/migrations/0005_homepage_our_work.py b/hypha/public/home/migrations/0005_homepage_our_work.py similarity index 100% rename from opentech/public/home/migrations/0005_homepage_our_work.py rename to hypha/public/home/migrations/0005_homepage_our_work.py diff --git a/opentech/public/home/migrations/0006_add_our_work_fields.py b/hypha/public/home/migrations/0006_add_our_work_fields.py similarity index 100% rename from opentech/public/home/migrations/0006_add_our_work_fields.py rename to hypha/public/home/migrations/0006_add_our_work_fields.py diff --git a/opentech/public/home/migrations/0007_add_labs_and_funds_homepage.py b/hypha/public/home/migrations/0007_add_labs_and_funds_homepage.py similarity index 100% rename from opentech/public/home/migrations/0007_add_labs_and_funds_homepage.py rename to hypha/public/home/migrations/0007_add_labs_and_funds_homepage.py diff --git a/opentech/public/home/migrations/0008_add_intro_to_lab_and_funds.py b/hypha/public/home/migrations/0008_add_intro_to_lab_and_funds.py similarity index 100% rename from opentech/public/home/migrations/0008_add_intro_to_lab_and_funds.py rename to hypha/public/home/migrations/0008_add_intro_to_lab_and_funds.py diff --git a/opentech/public/home/migrations/0009_django2_update.py b/hypha/public/home/migrations/0009_django2_update.py similarity index 100% rename from opentech/public/home/migrations/0009_django2_update.py rename to hypha/public/home/migrations/0009_django2_update.py diff --git a/opentech/public/home/migrations/0010_add_rfp_to_homepage.py b/hypha/public/home/migrations/0010_add_rfp_to_homepage.py similarity index 100% rename from opentech/public/home/migrations/0010_add_rfp_to_homepage.py rename to hypha/public/home/migrations/0010_add_rfp_to_homepage.py diff --git a/opentech/public/home/migrations/0011_correct_related_page_behaviour.py b/hypha/public/home/migrations/0011_correct_related_page_behaviour.py similarity index 100% rename from opentech/public/home/migrations/0011_correct_related_page_behaviour.py rename to hypha/public/home/migrations/0011_correct_related_page_behaviour.py diff --git a/opentech/public/home/migrations/__init__.py b/hypha/public/home/migrations/__init__.py similarity index 100% rename from opentech/public/home/migrations/__init__.py rename to hypha/public/home/migrations/__init__.py diff --git a/opentech/public/home/models.py b/hypha/public/home/models.py similarity index 100% rename from opentech/public/home/models.py rename to hypha/public/home/models.py diff --git a/opentech/public/home/templates/home/blocks/our_work.html b/hypha/public/home/templates/home/blocks/our_work.html similarity index 100% rename from opentech/public/home/templates/home/blocks/our_work.html rename to hypha/public/home/templates/home/blocks/our_work.html diff --git a/opentech/public/home/templates/home/home_page.html b/hypha/public/home/templates/home/home_page.html similarity index 100% rename from opentech/public/home/templates/home/home_page.html rename to hypha/public/home/templates/home/home_page.html diff --git a/opentech/public/home/templates/home/includes/list_block.html b/hypha/public/home/templates/home/includes/list_block.html similarity index 100% rename from opentech/public/home/templates/home/includes/list_block.html rename to hypha/public/home/templates/home/includes/list_block.html diff --git a/opentech/public/home/templatetags/__init__.py b/hypha/public/home/templatetags/__init__.py similarity index 100% rename from opentech/public/home/templatetags/__init__.py rename to hypha/public/home/templatetags/__init__.py diff --git a/opentech/public/home/templatetags/home_tags.py b/hypha/public/home/templatetags/home_tags.py similarity index 100% rename from opentech/public/home/templatetags/home_tags.py rename to hypha/public/home/templatetags/home_tags.py diff --git a/opentech/public/mailchimp/__init__.py b/hypha/public/mailchimp/__init__.py similarity index 100% rename from opentech/public/mailchimp/__init__.py rename to hypha/public/mailchimp/__init__.py diff --git a/opentech/public/mailchimp/apps.py b/hypha/public/mailchimp/apps.py similarity index 100% rename from opentech/public/mailchimp/apps.py rename to hypha/public/mailchimp/apps.py diff --git a/opentech/public/mailchimp/forms.py b/hypha/public/mailchimp/forms.py similarity index 100% rename from opentech/public/mailchimp/forms.py rename to hypha/public/mailchimp/forms.py diff --git a/opentech/public/mailchimp/migrations/0001_add_newsletter_setting.py b/hypha/public/mailchimp/migrations/0001_add_newsletter_setting.py similarity index 100% rename from opentech/public/mailchimp/migrations/0001_add_newsletter_setting.py rename to hypha/public/mailchimp/migrations/0001_add_newsletter_setting.py diff --git a/opentech/public/mailchimp/migrations/__init__.py b/hypha/public/mailchimp/migrations/__init__.py similarity index 100% rename from opentech/public/mailchimp/migrations/__init__.py rename to hypha/public/mailchimp/migrations/__init__.py diff --git a/opentech/public/mailchimp/models.py b/hypha/public/mailchimp/models.py similarity index 100% rename from opentech/public/mailchimp/models.py rename to hypha/public/mailchimp/models.py diff --git a/opentech/public/mailchimp/templates/mailchimp/newsletter_signup.html b/hypha/public/mailchimp/templates/mailchimp/newsletter_signup.html similarity index 100% rename from opentech/public/mailchimp/templates/mailchimp/newsletter_signup.html rename to hypha/public/mailchimp/templates/mailchimp/newsletter_signup.html diff --git a/opentech/public/mailchimp/tests.py b/hypha/public/mailchimp/tests.py similarity index 100% rename from opentech/public/mailchimp/tests.py rename to hypha/public/mailchimp/tests.py diff --git a/opentech/public/mailchimp/urls.py b/hypha/public/mailchimp/urls.py similarity index 100% rename from opentech/public/mailchimp/urls.py rename to hypha/public/mailchimp/urls.py diff --git a/opentech/public/mailchimp/views.py b/hypha/public/mailchimp/views.py similarity index 100% rename from opentech/public/mailchimp/views.py rename to hypha/public/mailchimp/views.py diff --git a/opentech/public/navigation/__init__.py b/hypha/public/navigation/__init__.py similarity index 100% rename from opentech/public/navigation/__init__.py rename to hypha/public/navigation/__init__.py diff --git a/opentech/public/navigation/migrations/0001_initial.py b/hypha/public/navigation/migrations/0001_initial.py similarity index 100% rename from opentech/public/navigation/migrations/0001_initial.py rename to hypha/public/navigation/migrations/0001_initial.py diff --git a/opentech/public/navigation/migrations/0002_remove_unused_navigation_elements.py b/hypha/public/navigation/migrations/0002_remove_unused_navigation_elements.py similarity index 100% rename from opentech/public/navigation/migrations/0002_remove_unused_navigation_elements.py rename to hypha/public/navigation/migrations/0002_remove_unused_navigation_elements.py diff --git a/opentech/public/navigation/migrations/__init__.py b/hypha/public/navigation/migrations/__init__.py similarity index 100% rename from opentech/public/navigation/migrations/__init__.py rename to hypha/public/navigation/migrations/__init__.py diff --git a/opentech/public/navigation/models.py b/hypha/public/navigation/models.py similarity index 100% rename from opentech/public/navigation/models.py rename to hypha/public/navigation/models.py diff --git a/opentech/public/navigation/templates/navigation/blocks/footer_column.html b/hypha/public/navigation/templates/navigation/blocks/footer_column.html similarity index 100% rename from opentech/public/navigation/templates/navigation/blocks/footer_column.html rename to hypha/public/navigation/templates/navigation/blocks/footer_column.html diff --git a/opentech/public/navigation/templates/navigation/blocks/menu_item.html b/hypha/public/navigation/templates/navigation/blocks/menu_item.html similarity index 100% rename from opentech/public/navigation/templates/navigation/blocks/menu_item.html rename to hypha/public/navigation/templates/navigation/blocks/menu_item.html diff --git a/opentech/public/navigation/templates/navigation/breadcrumbs.html b/hypha/public/navigation/templates/navigation/breadcrumbs.html similarity index 100% rename from opentech/public/navigation/templates/navigation/breadcrumbs.html rename to hypha/public/navigation/templates/navigation/breadcrumbs.html diff --git a/opentech/public/navigation/templates/navigation/includes/menu_item.html b/hypha/public/navigation/templates/navigation/includes/menu_item.html similarity index 100% rename from opentech/public/navigation/templates/navigation/includes/menu_item.html rename to hypha/public/navigation/templates/navigation/includes/menu_item.html diff --git a/opentech/public/navigation/templates/navigation/primarynav-apply-item.html b/hypha/public/navigation/templates/navigation/primarynav-apply-item.html similarity index 100% rename from opentech/public/navigation/templates/navigation/primarynav-apply-item.html rename to hypha/public/navigation/templates/navigation/primarynav-apply-item.html diff --git a/opentech/public/navigation/templates/navigation/primarynav-apply.html b/hypha/public/navigation/templates/navigation/primarynav-apply.html similarity index 100% rename from opentech/public/navigation/templates/navigation/primarynav-apply.html rename to hypha/public/navigation/templates/navigation/primarynav-apply.html diff --git a/opentech/public/navigation/templates/navigation/primarynav.html b/hypha/public/navigation/templates/navigation/primarynav.html similarity index 100% rename from opentech/public/navigation/templates/navigation/primarynav.html rename to hypha/public/navigation/templates/navigation/primarynav.html diff --git a/opentech/public/navigation/templatetags/__init__.py b/hypha/public/navigation/templatetags/__init__.py similarity index 100% rename from opentech/public/navigation/templatetags/__init__.py rename to hypha/public/navigation/templatetags/__init__.py diff --git a/opentech/public/navigation/templatetags/navigation_tags.py b/hypha/public/navigation/templatetags/navigation_tags.py similarity index 100% rename from opentech/public/navigation/templatetags/navigation_tags.py rename to hypha/public/navigation/templatetags/navigation_tags.py diff --git a/opentech/public/news/__init__.py b/hypha/public/news/__init__.py similarity index 100% rename from opentech/public/news/__init__.py rename to hypha/public/news/__init__.py diff --git a/opentech/public/news/blocks.py b/hypha/public/news/blocks.py similarity index 100% rename from opentech/public/news/blocks.py rename to hypha/public/news/blocks.py diff --git a/opentech/public/news/feeds.py b/hypha/public/news/feeds.py similarity index 100% rename from opentech/public/news/feeds.py rename to hypha/public/news/feeds.py diff --git a/opentech/public/news/management/commands/__init__.py b/hypha/public/news/management/commands/__init__.py similarity index 100% rename from opentech/public/news/management/commands/__init__.py rename to hypha/public/news/management/commands/__init__.py diff --git a/opentech/public/news/management/commands/migrate_news.py b/hypha/public/news/management/commands/migrate_news.py similarity index 100% rename from opentech/public/news/management/commands/migrate_news.py rename to hypha/public/news/management/commands/migrate_news.py diff --git a/opentech/public/news/migrations/0001_initial.py b/hypha/public/news/migrations/0001_initial.py similarity index 100% rename from opentech/public/news/migrations/0001_initial.py rename to hypha/public/news/migrations/0001_initial.py diff --git a/opentech/public/news/migrations/0002_add_header_image.py b/hypha/public/news/migrations/0002_add_header_image.py similarity index 100% rename from opentech/public/news/migrations/0002_add_header_image.py rename to hypha/public/news/migrations/0002_add_header_image.py diff --git a/opentech/public/news/migrations/0003_newspageauthor.py b/hypha/public/news/migrations/0003_newspageauthor.py similarity index 100% rename from opentech/public/news/migrations/0003_newspageauthor.py rename to hypha/public/news/migrations/0003_newspageauthor.py diff --git a/opentech/public/news/migrations/0004_make_author_required.py b/hypha/public/news/migrations/0004_make_author_required.py similarity index 100% rename from opentech/public/news/migrations/0004_make_author_required.py rename to hypha/public/news/migrations/0004_make_author_required.py diff --git a/opentech/public/news/migrations/0005_newsprojectrelatedpage.py b/hypha/public/news/migrations/0005_newsprojectrelatedpage.py similarity index 100% rename from opentech/public/news/migrations/0005_newsprojectrelatedpage.py rename to hypha/public/news/migrations/0005_newsprojectrelatedpage.py diff --git a/opentech/public/news/migrations/0006_newspage_drupal_id.py b/hypha/public/news/migrations/0006_newspage_drupal_id.py similarity index 100% rename from opentech/public/news/migrations/0006_newspage_drupal_id.py rename to hypha/public/news/migrations/0006_newspage_drupal_id.py diff --git a/opentech/public/news/migrations/0007_newsindex_introduction.py b/hypha/public/news/migrations/0007_newsindex_introduction.py similarity index 100% rename from opentech/public/news/migrations/0007_newsindex_introduction.py rename to hypha/public/news/migrations/0007_newsindex_introduction.py diff --git a/opentech/public/news/migrations/0008_correct_related_page_behaviour.py b/hypha/public/news/migrations/0008_correct_related_page_behaviour.py similarity index 100% rename from opentech/public/news/migrations/0008_correct_related_page_behaviour.py rename to hypha/public/news/migrations/0008_correct_related_page_behaviour.py diff --git a/opentech/public/news/migrations/0009_add_awesome_table_block.py b/hypha/public/news/migrations/0009_add_awesome_table_block.py similarity index 100% rename from opentech/public/news/migrations/0009_add_awesome_table_block.py rename to hypha/public/news/migrations/0009_add_awesome_table_block.py diff --git a/opentech/public/news/migrations/0010_newsfeedsettings.py b/hypha/public/news/migrations/0010_newsfeedsettings.py similarity index 100% rename from opentech/public/news/migrations/0010_newsfeedsettings.py rename to hypha/public/news/migrations/0010_newsfeedsettings.py diff --git a/opentech/public/news/migrations/0011_add_box_apply_link_fields.py b/hypha/public/news/migrations/0011_add_box_apply_link_fields.py similarity index 100% rename from opentech/public/news/migrations/0011_add_box_apply_link_fields.py rename to hypha/public/news/migrations/0011_add_box_apply_link_fields.py diff --git a/opentech/public/news/migrations/__init__.py b/hypha/public/news/migrations/__init__.py similarity index 100% rename from opentech/public/news/migrations/__init__.py rename to hypha/public/news/migrations/__init__.py diff --git a/opentech/public/news/models.py b/hypha/public/news/models.py similarity index 100% rename from opentech/public/news/models.py rename to hypha/public/news/models.py diff --git a/opentech/public/news/templates/news/blocks/awesome_table_widget_block.html b/hypha/public/news/templates/news/blocks/awesome_table_widget_block.html similarity index 100% rename from opentech/public/news/templates/news/blocks/awesome_table_widget_block.html rename to hypha/public/news/templates/news/blocks/awesome_table_widget_block.html diff --git a/opentech/public/news/templates/news/news_index.html b/hypha/public/news/templates/news/news_index.html similarity index 100% rename from opentech/public/news/templates/news/news_index.html rename to hypha/public/news/templates/news/news_index.html diff --git a/opentech/public/news/templates/news/news_page.html b/hypha/public/news/templates/news/news_page.html similarity index 100% rename from opentech/public/news/templates/news/news_page.html rename to hypha/public/news/templates/news/news_page.html diff --git a/opentech/public/people/__init__.py b/hypha/public/people/__init__.py similarity index 100% rename from opentech/public/people/__init__.py rename to hypha/public/people/__init__.py diff --git a/opentech/public/people/management/commands/__init__.py b/hypha/public/people/management/commands/__init__.py similarity index 100% rename from opentech/public/people/management/commands/__init__.py rename to hypha/public/people/management/commands/__init__.py diff --git a/opentech/public/people/management/commands/migrate_people.py b/hypha/public/people/management/commands/migrate_people.py similarity index 100% rename from opentech/public/people/management/commands/migrate_people.py rename to hypha/public/people/management/commands/migrate_people.py diff --git a/opentech/public/people/migrations/0001_initial.py b/hypha/public/people/migrations/0001_initial.py similarity index 100% rename from opentech/public/people/migrations/0001_initial.py rename to hypha/public/people/migrations/0001_initial.py diff --git a/opentech/public/people/migrations/0002_add_header_image.py b/hypha/public/people/migrations/0002_add_header_image.py similarity index 100% rename from opentech/public/people/migrations/0002_add_header_image.py rename to hypha/public/people/migrations/0002_add_header_image.py diff --git a/opentech/public/people/migrations/0003_update_contact_information.py b/hypha/public/people/migrations/0003_update_contact_information.py similarity index 100% rename from opentech/public/people/migrations/0003_update_contact_information.py rename to hypha/public/people/migrations/0003_update_contact_information.py diff --git a/opentech/public/people/migrations/0004_funding.py b/hypha/public/people/migrations/0004_funding.py similarity index 100% rename from opentech/public/people/migrations/0004_funding.py rename to hypha/public/people/migrations/0004_funding.py diff --git a/opentech/public/people/migrations/0005_django2_update.py b/hypha/public/people/migrations/0005_django2_update.py similarity index 100% rename from opentech/public/people/migrations/0005_django2_update.py rename to hypha/public/people/migrations/0005_django2_update.py diff --git a/opentech/public/people/migrations/0006_fundreviewers.py b/hypha/public/people/migrations/0006_fundreviewers.py similarity index 100% rename from opentech/public/people/migrations/0006_fundreviewers.py rename to hypha/public/people/migrations/0006_fundreviewers.py diff --git a/opentech/public/people/migrations/0007_allow_blank_source.py b/hypha/public/people/migrations/0007_allow_blank_source.py similarity index 100% rename from opentech/public/people/migrations/0007_allow_blank_source.py rename to hypha/public/people/migrations/0007_allow_blank_source.py diff --git a/opentech/public/people/migrations/0008_personpage_drupal_id.py b/hypha/public/people/migrations/0008_personpage_drupal_id.py similarity index 100% rename from opentech/public/people/migrations/0008_personpage_drupal_id.py rename to hypha/public/people/migrations/0008_personpage_drupal_id.py diff --git a/opentech/public/people/migrations/0009_dont_insist_on_first_name_or_title.py b/hypha/public/people/migrations/0009_dont_insist_on_first_name_or_title.py similarity index 100% rename from opentech/public/people/migrations/0009_dont_insist_on_first_name_or_title.py rename to hypha/public/people/migrations/0009_dont_insist_on_first_name_or_title.py diff --git a/opentech/public/people/migrations/0010_personpage_active.py b/hypha/public/people/migrations/0010_personpage_active.py similarity index 100% rename from opentech/public/people/migrations/0010_personpage_active.py rename to hypha/public/people/migrations/0010_personpage_active.py diff --git a/opentech/public/people/migrations/0011_change_the_contact_keys.py b/hypha/public/people/migrations/0011_change_the_contact_keys.py similarity index 100% rename from opentech/public/people/migrations/0011_change_the_contact_keys.py rename to hypha/public/people/migrations/0011_change_the_contact_keys.py diff --git a/opentech/public/people/migrations/0012_personindexpage_introduction.py b/hypha/public/people/migrations/0012_personindexpage_introduction.py similarity index 100% rename from opentech/public/people/migrations/0012_personindexpage_introduction.py rename to hypha/public/people/migrations/0012_personindexpage_introduction.py diff --git a/opentech/public/people/migrations/0013_add_box_apply_link_fields.py b/hypha/public/people/migrations/0013_add_box_apply_link_fields.py similarity index 100% rename from opentech/public/people/migrations/0013_add_box_apply_link_fields.py rename to hypha/public/people/migrations/0013_add_box_apply_link_fields.py diff --git a/opentech/public/people/migrations/__init__.py b/hypha/public/people/migrations/__init__.py similarity index 100% rename from opentech/public/people/migrations/__init__.py rename to hypha/public/people/migrations/__init__.py diff --git a/opentech/public/people/models.py b/hypha/public/people/models.py similarity index 100% rename from opentech/public/people/models.py rename to hypha/public/people/models.py diff --git a/opentech/public/people/static/people/admin/js/update_person_title.js b/hypha/public/people/static/people/admin/js/update_person_title.js similarity index 100% rename from opentech/public/people/static/people/admin/js/update_person_title.js rename to hypha/public/people/static/people/admin/js/update_person_title.js diff --git a/opentech/public/people/templates/people/includes/person_listing.html b/hypha/public/people/templates/people/includes/person_listing.html similarity index 100% rename from opentech/public/people/templates/people/includes/person_listing.html rename to hypha/public/people/templates/people/includes/person_listing.html diff --git a/opentech/public/people/templates/people/person_index_page.html b/hypha/public/people/templates/people/person_index_page.html similarity index 100% rename from opentech/public/people/templates/people/person_index_page.html rename to hypha/public/people/templates/people/person_index_page.html diff --git a/opentech/public/people/templates/people/person_page.html b/hypha/public/people/templates/people/person_page.html similarity index 100% rename from opentech/public/people/templates/people/person_page.html rename to hypha/public/people/templates/people/person_page.html diff --git a/opentech/public/people/wagtail_hooks.py b/hypha/public/people/wagtail_hooks.py similarity index 100% rename from opentech/public/people/wagtail_hooks.py rename to hypha/public/people/wagtail_hooks.py diff --git a/opentech/public/projects/__init__.py b/hypha/public/projects/__init__.py similarity index 100% rename from opentech/public/projects/__init__.py rename to hypha/public/projects/__init__.py diff --git a/opentech/public/projects/apps.py b/hypha/public/projects/apps.py similarity index 100% rename from opentech/public/projects/apps.py rename to hypha/public/projects/apps.py diff --git a/opentech/public/projects/management/commands/migrate_projects.py b/hypha/public/projects/management/commands/migrate_projects.py similarity index 100% rename from opentech/public/projects/management/commands/migrate_projects.py rename to hypha/public/projects/management/commands/migrate_projects.py diff --git a/opentech/public/projects/migrations/0001_initial.py b/hypha/public/projects/migrations/0001_initial.py similarity index 100% rename from opentech/public/projects/migrations/0001_initial.py rename to hypha/public/projects/migrations/0001_initial.py diff --git a/opentech/public/projects/migrations/0002_projectfunding.py b/hypha/public/projects/migrations/0002_projectfunding.py similarity index 100% rename from opentech/public/projects/migrations/0002_projectfunding.py rename to hypha/public/projects/migrations/0002_projectfunding.py diff --git a/opentech/public/projects/migrations/0003_projectpage_status.py b/hypha/public/projects/migrations/0003_projectpage_status.py similarity index 100% rename from opentech/public/projects/migrations/0003_projectpage_status.py rename to hypha/public/projects/migrations/0003_projectpage_status.py diff --git a/opentech/public/projects/migrations/0004_projectpage_categories.py b/hypha/public/projects/migrations/0004_projectpage_categories.py similarity index 100% rename from opentech/public/projects/migrations/0004_projectpage_categories.py rename to hypha/public/projects/migrations/0004_projectpage_categories.py diff --git a/opentech/public/projects/migrations/0005_projectpage_drupal_id.py b/hypha/public/projects/migrations/0005_projectpage_drupal_id.py similarity index 100% rename from opentech/public/projects/migrations/0005_projectpage_drupal_id.py rename to hypha/public/projects/migrations/0005_projectpage_drupal_id.py diff --git a/opentech/public/projects/migrations/0006_allow_blank_source.py b/hypha/public/projects/migrations/0006_allow_blank_source.py similarity index 100% rename from opentech/public/projects/migrations/0006_allow_blank_source.py rename to hypha/public/projects/migrations/0006_allow_blank_source.py diff --git a/opentech/public/projects/migrations/0007_fix_related_page_required_behaviour.py b/hypha/public/projects/migrations/0007_fix_related_page_required_behaviour.py similarity index 100% rename from opentech/public/projects/migrations/0007_fix_related_page_required_behaviour.py rename to hypha/public/projects/migrations/0007_fix_related_page_required_behaviour.py diff --git a/opentech/public/projects/migrations/0008_add_box_apply_link_fields.py b/hypha/public/projects/migrations/0008_add_box_apply_link_fields.py similarity index 100% rename from opentech/public/projects/migrations/0008_add_box_apply_link_fields.py rename to hypha/public/projects/migrations/0008_add_box_apply_link_fields.py diff --git a/opentech/public/projects/migrations/__init__.py b/hypha/public/projects/migrations/__init__.py similarity index 100% rename from opentech/public/projects/migrations/__init__.py rename to hypha/public/projects/migrations/__init__.py diff --git a/opentech/public/projects/models.py b/hypha/public/projects/models.py similarity index 100% rename from opentech/public/projects/models.py rename to hypha/public/projects/models.py diff --git a/opentech/public/projects/templates/projects/includes/project_status.html b/hypha/public/projects/templates/projects/includes/project_status.html similarity index 100% rename from opentech/public/projects/templates/projects/includes/project_status.html rename to hypha/public/projects/templates/projects/includes/project_status.html diff --git a/opentech/public/projects/templates/projects/project_index_page.html b/hypha/public/projects/templates/projects/project_index_page.html similarity index 100% rename from opentech/public/projects/templates/projects/project_index_page.html rename to hypha/public/projects/templates/projects/project_index_page.html diff --git a/opentech/public/projects/templates/projects/project_page.html b/hypha/public/projects/templates/projects/project_page.html similarity index 100% rename from opentech/public/projects/templates/projects/project_page.html rename to hypha/public/projects/templates/projects/project_page.html diff --git a/opentech/public/projects/templates/projects/widgets/categories_widget.html b/hypha/public/projects/templates/projects/widgets/categories_widget.html similarity index 100% rename from opentech/public/projects/templates/projects/widgets/categories_widget.html rename to hypha/public/projects/templates/projects/widgets/categories_widget.html diff --git a/opentech/public/projects/templates/projects/widgets/options_option.html b/hypha/public/projects/templates/projects/widgets/options_option.html similarity index 100% rename from opentech/public/projects/templates/projects/widgets/options_option.html rename to hypha/public/projects/templates/projects/widgets/options_option.html diff --git a/opentech/public/projects/templates/projects/widgets/options_widget.html b/hypha/public/projects/templates/projects/widgets/options_widget.html similarity index 100% rename from opentech/public/projects/templates/projects/widgets/options_widget.html rename to hypha/public/projects/templates/projects/widgets/options_widget.html diff --git a/opentech/public/projects/tests.py b/hypha/public/projects/tests.py similarity index 100% rename from opentech/public/projects/tests.py rename to hypha/public/projects/tests.py diff --git a/opentech/public/projects/views.py b/hypha/public/projects/views.py similarity index 100% rename from opentech/public/projects/views.py rename to hypha/public/projects/views.py diff --git a/opentech/public/projects/widgets.py b/hypha/public/projects/widgets.py similarity index 100% rename from opentech/public/projects/widgets.py rename to hypha/public/projects/widgets.py diff --git a/opentech/public/search/__init__.py b/hypha/public/search/__init__.py similarity index 100% rename from opentech/public/search/__init__.py rename to hypha/public/search/__init__.py diff --git a/opentech/public/search/templates/search/includes/search_result.html b/hypha/public/search/templates/search/includes/search_result.html similarity index 100% rename from opentech/public/search/templates/search/includes/search_result.html rename to hypha/public/search/templates/search/includes/search_result.html diff --git a/opentech/public/search/templates/search/search.html b/hypha/public/search/templates/search/search.html similarity index 100% rename from opentech/public/search/templates/search/search.html rename to hypha/public/search/templates/search/search.html diff --git a/opentech/public/search/views.py b/hypha/public/search/views.py similarity index 100% rename from opentech/public/search/views.py rename to hypha/public/search/views.py diff --git a/opentech/public/standardpages/__init__.py b/hypha/public/standardpages/__init__.py similarity index 100% rename from opentech/public/standardpages/__init__.py rename to hypha/public/standardpages/__init__.py diff --git a/opentech/public/standardpages/migrations/0001_initial.py b/hypha/public/standardpages/migrations/0001_initial.py similarity index 100% rename from opentech/public/standardpages/migrations/0001_initial.py rename to hypha/public/standardpages/migrations/0001_initial.py diff --git a/opentech/public/standardpages/migrations/0002_add_header_image.py b/hypha/public/standardpages/migrations/0002_add_header_image.py similarity index 100% rename from opentech/public/standardpages/migrations/0002_add_header_image.py rename to hypha/public/standardpages/migrations/0002_add_header_image.py diff --git a/opentech/public/standardpages/migrations/0003_correct_related_page_behaviour.py b/hypha/public/standardpages/migrations/0003_correct_related_page_behaviour.py similarity index 100% rename from opentech/public/standardpages/migrations/0003_correct_related_page_behaviour.py rename to hypha/public/standardpages/migrations/0003_correct_related_page_behaviour.py diff --git a/opentech/public/standardpages/migrations/0004_add_box_apply_link_fields.py b/hypha/public/standardpages/migrations/0004_add_box_apply_link_fields.py similarity index 100% rename from opentech/public/standardpages/migrations/0004_add_box_apply_link_fields.py rename to hypha/public/standardpages/migrations/0004_add_box_apply_link_fields.py diff --git a/opentech/public/standardpages/migrations/__init__.py b/hypha/public/standardpages/migrations/__init__.py similarity index 100% rename from opentech/public/standardpages/migrations/__init__.py rename to hypha/public/standardpages/migrations/__init__.py diff --git a/opentech/public/standardpages/models.py b/hypha/public/standardpages/models.py similarity index 100% rename from opentech/public/standardpages/models.py rename to hypha/public/standardpages/models.py diff --git a/opentech/public/standardpages/templates/standardpages/index_page.html b/hypha/public/standardpages/templates/standardpages/index_page.html similarity index 100% rename from opentech/public/standardpages/templates/standardpages/index_page.html rename to hypha/public/standardpages/templates/standardpages/index_page.html diff --git a/opentech/public/standardpages/templates/standardpages/information_page.html b/hypha/public/standardpages/templates/standardpages/information_page.html similarity index 100% rename from opentech/public/standardpages/templates/standardpages/information_page.html rename to hypha/public/standardpages/templates/standardpages/information_page.html diff --git a/opentech/public/urls.py b/hypha/public/urls.py similarity index 100% rename from opentech/public/urls.py rename to hypha/public/urls.py diff --git a/opentech/public/utils/__init__.py b/hypha/public/utils/__init__.py similarity index 100% rename from opentech/public/utils/__init__.py rename to hypha/public/utils/__init__.py diff --git a/opentech/public/utils/blocks.py b/hypha/public/utils/blocks.py similarity index 100% rename from opentech/public/utils/blocks.py rename to hypha/public/utils/blocks.py diff --git a/opentech/public/utils/cache.py b/hypha/public/utils/cache.py similarity index 100% rename from opentech/public/utils/cache.py rename to hypha/public/utils/cache.py diff --git a/opentech/public/utils/context_processors.py b/hypha/public/utils/context_processors.py similarity index 100% rename from opentech/public/utils/context_processors.py rename to hypha/public/utils/context_processors.py diff --git a/opentech/public/utils/migrations/0001_initial.py b/hypha/public/utils/migrations/0001_initial.py similarity index 100% rename from opentech/public/utils/migrations/0001_initial.py rename to hypha/public/utils/migrations/0001_initial.py diff --git a/opentech/public/utils/migrations/0002_add_footer_content_setting.py b/hypha/public/utils/migrations/0002_add_footer_content_setting.py similarity index 100% rename from opentech/public/utils/migrations/0002_add_footer_content_setting.py rename to hypha/public/utils/migrations/0002_add_footer_content_setting.py diff --git a/opentech/public/utils/migrations/0003_add_site_logo_setting.py b/hypha/public/utils/migrations/0003_add_site_logo_setting.py similarity index 100% rename from opentech/public/utils/migrations/0003_add_site_logo_setting.py rename to hypha/public/utils/migrations/0003_add_site_logo_setting.py diff --git a/opentech/public/utils/migrations/__init__.py b/hypha/public/utils/migrations/__init__.py similarity index 100% rename from opentech/public/utils/migrations/__init__.py rename to hypha/public/utils/migrations/__init__.py diff --git a/opentech/public/utils/models.py b/hypha/public/utils/models.py similarity index 100% rename from opentech/public/utils/models.py rename to hypha/public/utils/models.py diff --git a/opentech/public/utils/templates/utils/includes/funding.html b/hypha/public/utils/templates/utils/includes/funding.html similarity index 100% rename from opentech/public/utils/templates/utils/includes/funding.html rename to hypha/public/utils/templates/utils/includes/funding.html diff --git a/opentech/public/utils/templates/utils/includes/login_button.html b/hypha/public/utils/templates/utils/includes/login_button.html similarity index 100% rename from opentech/public/utils/templates/utils/includes/login_button.html rename to hypha/public/utils/templates/utils/includes/login_button.html diff --git a/opentech/public/utils/templates/utils/includes/media_box_icon.html b/hypha/public/utils/templates/utils/includes/media_box_icon.html similarity index 100% rename from opentech/public/utils/templates/utils/includes/media_box_icon.html rename to hypha/public/utils/templates/utils/includes/media_box_icon.html diff --git a/opentech/public/utils/templates/utils/listing_index.html b/hypha/public/utils/templates/utils/listing_index.html similarity index 100% rename from opentech/public/utils/templates/utils/listing_index.html rename to hypha/public/utils/templates/utils/listing_index.html diff --git a/opentech/public/utils/templatetags/__init__.py b/hypha/public/utils/templatetags/__init__.py similarity index 100% rename from opentech/public/utils/templatetags/__init__.py rename to hypha/public/utils/templatetags/__init__.py diff --git a/opentech/public/utils/templatetags/util_tags.py b/hypha/public/utils/templatetags/util_tags.py similarity index 100% rename from opentech/public/utils/templatetags/util_tags.py rename to hypha/public/utils/templatetags/util_tags.py diff --git a/opentech/public/utils/wagtail_hooks.py b/hypha/public/utils/wagtail_hooks.py similarity index 100% rename from opentech/public/utils/wagtail_hooks.py rename to hypha/public/utils/wagtail_hooks.py diff --git a/opentech/settings/.gitignore b/hypha/settings/.gitignore similarity index 100% rename from opentech/settings/.gitignore rename to hypha/settings/.gitignore diff --git a/opentech/settings/__init__.py b/hypha/settings/__init__.py similarity index 100% rename from opentech/settings/__init__.py rename to hypha/settings/__init__.py diff --git a/opentech/settings/base.py b/hypha/settings/base.py similarity index 90% rename from opentech/settings/base.py rename to hypha/settings/base.py index 3e8e7c85f9e0544ee8d0689b79b03d2bdf632b59..2a3fa51da9138b2091b2ce5984b28a1149089cdf 100644 --- a/opentech/settings/base.py +++ b/hypha/settings/base.py @@ -1,5 +1,5 @@ """ -Django settings for opentech project. +Django settings for hypha project. """ # Build paths inside the project like this: os.path.join(BASE_DIR, ...) @@ -11,7 +11,7 @@ env = os.environ.copy() PROJECT_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) BASE_DIR = os.path.dirname(PROJECT_DIR) -APP_NAME = env.get('APP_NAME', 'opentech') +APP_NAME = env.get('APP_NAME', 'hypha') DEBUG = False @@ -65,32 +65,32 @@ if 'SERVER_EMAIL' in env: INSTALLED_APPS = [ 'scout_apm.django', - 'opentech.images', - - 'opentech.apply.activity', - 'opentech.apply.categories', - 'opentech.apply.funds', - 'opentech.apply.dashboard', - 'opentech.apply.flags', - 'opentech.apply.home', - 'opentech.apply.users', - 'opentech.apply.review', - 'opentech.apply.determinations', - 'opentech.apply.stream_forms', - 'opentech.apply.utils', - 'opentech.apply.projects.apps.ProjectsConfig', - - 'opentech.public.funds', - 'opentech.public.home', - 'opentech.public.mailchimp', - 'opentech.public.navigation', - 'opentech.public.news', - 'opentech.public.people', - 'opentech.public.projects', - 'opentech.public.search', - 'opentech.public.standardpages', - 'opentech.public.forms', - 'opentech.public.utils', + 'hypha.images', + + 'hypha.apply.activity', + 'hypha.apply.categories', + 'hypha.apply.funds', + 'hypha.apply.dashboard', + 'hypha.apply.flags', + 'hypha.apply.home', + 'hypha.apply.users', + 'hypha.apply.review', + 'hypha.apply.determinations', + 'hypha.apply.stream_forms', + 'hypha.apply.utils', + 'hypha.apply.projects.apps.ProjectsConfig', + + 'hypha.public.funds', + 'hypha.public.home', + 'hypha.public.mailchimp', + 'hypha.public.navigation', + 'hypha.public.news', + 'hypha.public.people', + 'hypha.public.projects', + 'hypha.public.search', + 'hypha.public.standardpages', + 'hypha.public.forms', + 'hypha.public.utils', 'social_django', @@ -159,15 +159,15 @@ MIDDLEWARE = [ 'django_referrer_policy.middleware.ReferrerPolicyMiddleware', 'django_otp.middleware.OTPMiddleware', - 'opentech.apply.users.middleware.SocialAuthExceptionMiddleware', + 'hypha.apply.users.middleware.SocialAuthExceptionMiddleware', 'wagtail.core.middleware.SiteMiddleware', 'wagtail.contrib.redirects.middleware.RedirectMiddleware', - 'opentech.apply.middleware.apply_url_conf_middleware', + 'hypha.apply.middleware.apply_url_conf_middleware', ] -ROOT_URLCONF = 'opentech.urls' +ROOT_URLCONF = 'hypha.urls' TEMPLATES = [ { @@ -184,10 +184,10 @@ TEMPLATES = [ 'django.contrib.auth.context_processors.auth', 'django.contrib.messages.context_processors.messages', 'wagtail.contrib.settings.context_processors.settings', - 'opentech.public.utils.context_processors.global_vars', + 'hypha.public.utils.context_processors.global_vars', 'social_django.context_processors.backends', 'social_django.context_processors.login_redirect', - 'opentech.apply.projects.context_processors.projects_enabled', + 'hypha.apply.projects.context_processors.projects_enabled', ], }, }, @@ -195,7 +195,7 @@ TEMPLATES = [ FORM_RENDERER = 'django.forms.renderers.TemplatesSetting' -WSGI_APPLICATION = 'opentech.wsgi.application' +WSGI_APPLICATION = 'hypha.wsgi.application' # Database @@ -341,8 +341,8 @@ MEDIA_URL = env.get('MEDIA_URL', '/media/') AUTH_USER_MODEL = 'users.User' -WAGTAIL_USER_EDIT_FORM = 'opentech.apply.users.forms.CustomUserEditForm' -WAGTAIL_USER_CREATION_FORM = 'opentech.apply.users.forms.CustomUserCreationForm' +WAGTAIL_USER_EDIT_FORM = 'hypha.apply.users.forms.CustomUserEditForm' +WAGTAIL_USER_CREATION_FORM = 'hypha.apply.users.forms.CustomUserCreationForm' WAGTAIL_USER_CUSTOM_FIELDS = ['full_name'] LOGIN_URL = 'users_public:login' @@ -372,7 +372,7 @@ LOGGING = { } }, 'loggers': { - 'opentech': { + 'hypha': { 'handlers': ['console'], 'level': 'INFO', 'propagate': False, @@ -403,7 +403,7 @@ LOGGING = { # Wagtail settings -WAGTAIL_SITE_NAME = "opentech" +WAGTAIL_SITE_NAME = "hypha" WAGTAILIMAGES_IMAGE_MODEL = "images.CustomImage" WAGTAILIMAGES_FEATURE_DETECTION_ENABLED = False @@ -439,7 +439,7 @@ DEBUGTOOLBAR = False if 'STAFF_EMAIL_DOMAINS' in env: STAFF_EMAIL_DOMAINS = env['STAFF_EMAIL_DOMAINS'].split(',') else: - STAFF_EMAIL_DOMAINS = ['opentech.fund'] + STAFF_EMAIL_DOMAINS = [] # Social Auth SOCIAL_AUTH_URL_NAMESPACE = 'social' @@ -470,7 +470,7 @@ SOCIAL_AUTH_PIPELINE = ( 'social_core.pipeline.social_auth.associate_user', 'social_core.pipeline.social_auth.load_extra_data', 'social_core.pipeline.user.user_details', - 'opentech.apply.users.pipeline.make_otf_staff', + 'hypha.apply.users.pipeline.make_otf_staff', ) # Bleach Settings @@ -493,7 +493,7 @@ FILE_ACCEPT_ATTR_VALUE = ", ".join(['.' + ext for ext in FILE_ALLOWED_EXTENSIONS # Hijack Settings HIJACK_LOGIN_REDIRECT_URL = '/dashboard/' HIJACK_LOGOUT_REDIRECT_URL = '/account/' -HIJACK_DECORATOR = 'opentech.apply.users.decorators.superuser_decorator' +HIJACK_DECORATOR = 'hypha.apply.users.decorators.superuser_decorator' # Messaging Settings @@ -518,8 +518,8 @@ else: # S3 configuration if 'AWS_STORAGE_BUCKET_NAME' in env: - DEFAULT_FILE_STORAGE = 'opentech.storage_backends.PublicMediaStorage' - PRIVATE_FILE_STORAGE = 'opentech.storage_backends.PrivateMediaStorage' + DEFAULT_FILE_STORAGE = 'hypha.storage_backends.PublicMediaStorage' + PRIVATE_FILE_STORAGE = 'hypha.storage_backends.PrivateMediaStorage' AWS_STORAGE_BUCKET_NAME = env['AWS_STORAGE_BUCKET_NAME'] @@ -615,7 +615,7 @@ REFERRER_POLICY = env.get('SECURE_REFERRER_POLICY', WEBPACK_LOADER = { 'DEFAULT': { 'BUNDLE_DIR_NAME': 'app/', - 'STATS_FILE': os.path.join(BASE_DIR, './opentech/static_compiled/app/webpack-stats-prod.json'), + 'STATS_FILE': os.path.join(BASE_DIR, './hypha/static_compiled/app/webpack-stats-prod.json'), } } diff --git a/opentech/settings/dev.py b/hypha/settings/dev.py similarity index 95% rename from opentech/settings/dev.py rename to hypha/settings/dev.py index e6d22d416af7618c58c592ed2c6c96d8e8ca40a3..76926f9bfdb265e2ec1502f394837e728379d8ff 100644 --- a/opentech/settings/dev.py +++ b/hypha/settings/dev.py @@ -8,7 +8,7 @@ SECRET_KEY = 'CHANGEME!!!' WAGTAIL_CACHE = False -ALLOWED_HOSTS = ['apply.localhost', 'localhost', '127.0.0.1', 'dev.otf.is', 'dev-apply.otf.is'] +ALLOWED_HOSTS = ['apply.localhost', 'localhost', '127.0.0.1', 'hypha.test', 'apply.hypha.test'] BASE_URL = 'http://localhost:8000' @@ -97,7 +97,7 @@ if LOCAL_FILE_LOGGING: 'handlers': ['logfile'], 'level': 'DEBUG', }, - 'opentech': { + 'hypha': { 'handlers': ['logfile'], 'level': 'DEBUG', }, @@ -143,5 +143,5 @@ DEBUG_TOOLBAR_CONFIG = { } WEBPACK_LOADER['DEFAULT'].update({ - 'STATS_FILE': os.path.join(BASE_DIR, './opentech/static_compiled/app/webpack-stats.json'), + 'STATS_FILE': os.path.join(BASE_DIR, './hypha/static_compiled/app/webpack-stats.json'), }) diff --git a/opentech/settings/local.py.example b/hypha/settings/local.py.example similarity index 82% rename from opentech/settings/local.py.example rename to hypha/settings/local.py.example index 9ff551708a78bae30ad0680f3ad06ee4dfd921f0..2b5dffa52ced2e77ac3e296c21967b46e2597358 100644 --- a/opentech/settings/local.py.example +++ b/hypha/settings/local.py.example @@ -7,9 +7,9 @@ CACHES = { } } -# ALLOWED_HOSTS = ['apply.otf.test', 'otf.test', 'apply.hypha.test', 'hypha.test', '127.0.0.1'] +# ALLOWED_HOSTS = ['apply.hypha.test', 'hypha.test', '127.0.0.1'] -# BASE_URL = 'http://otf.test' +# BASE_URL = 'http://hypha.test' # Turn off DEBUG mode. # DEBUG = False diff --git a/opentech/settings/production.py b/hypha/settings/production.py similarity index 100% rename from opentech/settings/production.py rename to hypha/settings/production.py diff --git a/opentech/settings/test.py b/hypha/settings/test.py similarity index 100% rename from opentech/settings/test.py rename to hypha/settings/test.py diff --git a/opentech/static_src/src/app/.eslintrc b/hypha/static_src/src/app/.eslintrc similarity index 100% rename from opentech/static_src/src/app/.eslintrc rename to hypha/static_src/src/app/.eslintrc diff --git a/opentech/static_src/src/app/src/SubmissionsByRoundApp.js b/hypha/static_src/src/app/src/SubmissionsByRoundApp.js similarity index 100% rename from opentech/static_src/src/app/src/SubmissionsByRoundApp.js rename to hypha/static_src/src/app/src/SubmissionsByRoundApp.js diff --git a/opentech/static_src/src/app/src/SubmissionsByStatusApp.js b/hypha/static_src/src/app/src/SubmissionsByStatusApp.js similarity index 100% rename from opentech/static_src/src/app/src/SubmissionsByStatusApp.js rename to hypha/static_src/src/app/src/SubmissionsByStatusApp.js diff --git a/opentech/static_src/src/app/src/SwitcherApp.js b/hypha/static_src/src/app/src/SwitcherApp.js similarity index 100% rename from opentech/static_src/src/app/src/SwitcherApp.js rename to hypha/static_src/src/app/src/SwitcherApp.js diff --git a/opentech/static_src/src/app/src/api/index.js b/hypha/static_src/src/app/src/api/index.js similarity index 100% rename from opentech/static_src/src/app/src/api/index.js rename to hypha/static_src/src/app/src/api/index.js diff --git a/opentech/static_src/src/app/src/api/notes.js b/hypha/static_src/src/app/src/api/notes.js similarity index 100% rename from opentech/static_src/src/app/src/api/notes.js rename to hypha/static_src/src/app/src/api/notes.js diff --git a/opentech/static_src/src/app/src/api/rounds.js b/hypha/static_src/src/app/src/api/rounds.js similarity index 100% rename from opentech/static_src/src/app/src/api/rounds.js rename to hypha/static_src/src/app/src/api/rounds.js diff --git a/opentech/static_src/src/app/src/api/submissions.js b/hypha/static_src/src/app/src/api/submissions.js similarity index 100% rename from opentech/static_src/src/app/src/api/submissions.js rename to hypha/static_src/src/app/src/api/submissions.js diff --git a/opentech/static_src/src/app/src/api/utils.js b/hypha/static_src/src/app/src/api/utils.js similarity index 100% rename from opentech/static_src/src/app/src/api/utils.js rename to hypha/static_src/src/app/src/api/utils.js diff --git a/opentech/static_src/src/app/src/components/DetailView/index.js b/hypha/static_src/src/app/src/components/DetailView/index.js similarity index 100% rename from opentech/static_src/src/app/src/components/DetailView/index.js rename to hypha/static_src/src/app/src/components/DetailView/index.js diff --git a/opentech/static_src/src/app/src/components/DetailView/style.scss b/hypha/static_src/src/app/src/components/DetailView/style.scss similarity index 100% rename from opentech/static_src/src/app/src/components/DetailView/style.scss rename to hypha/static_src/src/app/src/components/DetailView/style.scss diff --git a/opentech/static_src/src/app/src/components/EmptyPanel/index.js b/hypha/static_src/src/app/src/components/EmptyPanel/index.js similarity index 100% rename from opentech/static_src/src/app/src/components/EmptyPanel/index.js rename to hypha/static_src/src/app/src/components/EmptyPanel/index.js diff --git a/opentech/static_src/src/app/src/components/FullScreenLoadingPanel/index.js b/hypha/static_src/src/app/src/components/FullScreenLoadingPanel/index.js similarity index 100% rename from opentech/static_src/src/app/src/components/FullScreenLoadingPanel/index.js rename to hypha/static_src/src/app/src/components/FullScreenLoadingPanel/index.js diff --git a/opentech/static_src/src/app/src/components/FullScreenLoadingPanel/styles.scss b/hypha/static_src/src/app/src/components/FullScreenLoadingPanel/styles.scss similarity index 100% rename from opentech/static_src/src/app/src/components/FullScreenLoadingPanel/styles.scss rename to hypha/static_src/src/app/src/components/FullScreenLoadingPanel/styles.scss diff --git a/opentech/static_src/src/app/src/components/GroupedListing/index.js b/hypha/static_src/src/app/src/components/GroupedListing/index.js similarity index 100% rename from opentech/static_src/src/app/src/components/GroupedListing/index.js rename to hypha/static_src/src/app/src/components/GroupedListing/index.js diff --git a/opentech/static_src/src/app/src/components/GroupedListing/styles.scss b/hypha/static_src/src/app/src/components/GroupedListing/styles.scss similarity index 100% rename from opentech/static_src/src/app/src/components/GroupedListing/styles.scss rename to hypha/static_src/src/app/src/components/GroupedListing/styles.scss diff --git a/opentech/static_src/src/app/src/components/InlineLoading/index.js b/hypha/static_src/src/app/src/components/InlineLoading/index.js similarity index 100% rename from opentech/static_src/src/app/src/components/InlineLoading/index.js rename to hypha/static_src/src/app/src/components/InlineLoading/index.js diff --git a/opentech/static_src/src/app/src/components/InlineLoading/styles.scss b/hypha/static_src/src/app/src/components/InlineLoading/styles.scss similarity index 100% rename from opentech/static_src/src/app/src/components/InlineLoading/styles.scss rename to hypha/static_src/src/app/src/components/InlineLoading/styles.scss diff --git a/opentech/static_src/src/app/src/components/Listing/index.js b/hypha/static_src/src/app/src/components/Listing/index.js similarity index 100% rename from opentech/static_src/src/app/src/components/Listing/index.js rename to hypha/static_src/src/app/src/components/Listing/index.js diff --git a/opentech/static_src/src/app/src/components/Listing/style.scss b/hypha/static_src/src/app/src/components/Listing/style.scss similarity index 100% rename from opentech/static_src/src/app/src/components/Listing/style.scss rename to hypha/static_src/src/app/src/components/Listing/style.scss diff --git a/opentech/static_src/src/app/src/components/ListingDropdown/index.js b/hypha/static_src/src/app/src/components/ListingDropdown/index.js similarity index 100% rename from opentech/static_src/src/app/src/components/ListingDropdown/index.js rename to hypha/static_src/src/app/src/components/ListingDropdown/index.js diff --git a/opentech/static_src/src/app/src/components/ListingGroup.js b/hypha/static_src/src/app/src/components/ListingGroup.js similarity index 100% rename from opentech/static_src/src/app/src/components/ListingGroup.js rename to hypha/static_src/src/app/src/components/ListingGroup.js diff --git a/opentech/static_src/src/app/src/components/ListingHeading.js b/hypha/static_src/src/app/src/components/ListingHeading.js similarity index 100% rename from opentech/static_src/src/app/src/components/ListingHeading.js rename to hypha/static_src/src/app/src/components/ListingHeading.js diff --git a/opentech/static_src/src/app/src/components/ListingItem.js b/hypha/static_src/src/app/src/components/ListingItem.js similarity index 100% rename from opentech/static_src/src/app/src/components/ListingItem.js rename to hypha/static_src/src/app/src/components/ListingItem.js diff --git a/opentech/static_src/src/app/src/components/LoadingPanel/index.js b/hypha/static_src/src/app/src/components/LoadingPanel/index.js similarity index 100% rename from opentech/static_src/src/app/src/components/LoadingPanel/index.js rename to hypha/static_src/src/app/src/components/LoadingPanel/index.js diff --git a/opentech/static_src/src/app/src/components/LoadingPanel/styles.scss b/hypha/static_src/src/app/src/components/LoadingPanel/styles.scss similarity index 100% rename from opentech/static_src/src/app/src/components/LoadingPanel/styles.scss rename to hypha/static_src/src/app/src/components/LoadingPanel/styles.scss diff --git a/opentech/static_src/src/app/src/components/MessageBar/index.js b/hypha/static_src/src/app/src/components/MessageBar/index.js similarity index 100% rename from opentech/static_src/src/app/src/components/MessageBar/index.js rename to hypha/static_src/src/app/src/components/MessageBar/index.js diff --git a/opentech/static_src/src/app/src/components/MessagesList/index.js b/hypha/static_src/src/app/src/components/MessagesList/index.js similarity index 100% rename from opentech/static_src/src/app/src/components/MessagesList/index.js rename to hypha/static_src/src/app/src/components/MessagesList/index.js diff --git a/opentech/static_src/src/app/src/components/NoteListingItem/index.js b/hypha/static_src/src/app/src/components/NoteListingItem/index.js similarity index 100% rename from opentech/static_src/src/app/src/components/NoteListingItem/index.js rename to hypha/static_src/src/app/src/components/NoteListingItem/index.js diff --git a/opentech/static_src/src/app/src/components/NoteListingItem/styles.scss b/hypha/static_src/src/app/src/components/NoteListingItem/styles.scss similarity index 100% rename from opentech/static_src/src/app/src/components/NoteListingItem/styles.scss rename to hypha/static_src/src/app/src/components/NoteListingItem/styles.scss diff --git a/opentech/static_src/src/app/src/components/OTFLoadingIcon/index.js b/hypha/static_src/src/app/src/components/OTFLoadingIcon/index.js similarity index 100% rename from opentech/static_src/src/app/src/components/OTFLoadingIcon/index.js rename to hypha/static_src/src/app/src/components/OTFLoadingIcon/index.js diff --git a/opentech/static_src/src/app/src/components/OTFLoadingIcon/styles.scss b/hypha/static_src/src/app/src/components/OTFLoadingIcon/styles.scss similarity index 100% rename from opentech/static_src/src/app/src/components/OTFLoadingIcon/styles.scss rename to hypha/static_src/src/app/src/components/OTFLoadingIcon/styles.scss diff --git a/opentech/static_src/src/app/src/components/ReviewBlock/index.js b/hypha/static_src/src/app/src/components/ReviewBlock/index.js similarity index 100% rename from opentech/static_src/src/app/src/components/ReviewBlock/index.js rename to hypha/static_src/src/app/src/components/ReviewBlock/index.js diff --git a/opentech/static_src/src/app/src/components/ReviewBlock/styles.scss b/hypha/static_src/src/app/src/components/ReviewBlock/styles.scss similarity index 100% rename from opentech/static_src/src/app/src/components/ReviewBlock/styles.scss rename to hypha/static_src/src/app/src/components/ReviewBlock/styles.scss diff --git a/opentech/static_src/src/app/src/components/RichTextForm/index.js b/hypha/static_src/src/app/src/components/RichTextForm/index.js similarity index 100% rename from opentech/static_src/src/app/src/components/RichTextForm/index.js rename to hypha/static_src/src/app/src/components/RichTextForm/index.js diff --git a/opentech/static_src/src/app/src/components/Select/index.js b/hypha/static_src/src/app/src/components/Select/index.js similarity index 100% rename from opentech/static_src/src/app/src/components/Select/index.js rename to hypha/static_src/src/app/src/components/Select/index.js diff --git a/opentech/static_src/src/app/src/components/SidebarBlock/index.js b/hypha/static_src/src/app/src/components/SidebarBlock/index.js similarity index 100% rename from opentech/static_src/src/app/src/components/SidebarBlock/index.js rename to hypha/static_src/src/app/src/components/SidebarBlock/index.js diff --git a/opentech/static_src/src/app/src/components/SidebarBlock/styles.scss b/hypha/static_src/src/app/src/components/SidebarBlock/styles.scss similarity index 100% rename from opentech/static_src/src/app/src/components/SidebarBlock/styles.scss rename to hypha/static_src/src/app/src/components/SidebarBlock/styles.scss diff --git a/opentech/static_src/src/app/src/components/SubmissionDisplay/answers.js b/hypha/static_src/src/app/src/components/SubmissionDisplay/answers.js similarity index 100% rename from opentech/static_src/src/app/src/components/SubmissionDisplay/answers.js rename to hypha/static_src/src/app/src/components/SubmissionDisplay/answers.js diff --git a/opentech/static_src/src/app/src/components/SubmissionDisplay/index.js b/hypha/static_src/src/app/src/components/SubmissionDisplay/index.js similarity index 100% rename from opentech/static_src/src/app/src/components/SubmissionDisplay/index.js rename to hypha/static_src/src/app/src/components/SubmissionDisplay/index.js diff --git a/opentech/static_src/src/app/src/components/SubmissionDisplay/styles.scss b/hypha/static_src/src/app/src/components/SubmissionDisplay/styles.scss similarity index 100% rename from opentech/static_src/src/app/src/components/SubmissionDisplay/styles.scss rename to hypha/static_src/src/app/src/components/SubmissionDisplay/styles.scss diff --git a/opentech/static_src/src/app/src/components/SubmissionLink/index.js b/hypha/static_src/src/app/src/components/SubmissionLink/index.js similarity index 100% rename from opentech/static_src/src/app/src/components/SubmissionLink/index.js rename to hypha/static_src/src/app/src/components/SubmissionLink/index.js diff --git a/opentech/static_src/src/app/src/components/SubmissionLink/styles.scss b/hypha/static_src/src/app/src/components/SubmissionLink/styles.scss similarity index 100% rename from opentech/static_src/src/app/src/components/SubmissionLink/styles.scss rename to hypha/static_src/src/app/src/components/SubmissionLink/styles.scss diff --git a/opentech/static_src/src/app/src/components/Switcher/index.js b/hypha/static_src/src/app/src/components/Switcher/index.js similarity index 100% rename from opentech/static_src/src/app/src/components/Switcher/index.js rename to hypha/static_src/src/app/src/components/Switcher/index.js diff --git a/opentech/static_src/src/app/src/components/Switcher/styles.scss b/hypha/static_src/src/app/src/components/Switcher/styles.scss similarity index 100% rename from opentech/static_src/src/app/src/components/Switcher/styles.scss rename to hypha/static_src/src/app/src/components/Switcher/styles.scss diff --git a/opentech/static_src/src/app/src/components/Tabber/index.js b/hypha/static_src/src/app/src/components/Tabber/index.js similarity index 100% rename from opentech/static_src/src/app/src/components/Tabber/index.js rename to hypha/static_src/src/app/src/components/Tabber/index.js diff --git a/opentech/static_src/src/app/src/components/Tabber/styles.scss b/hypha/static_src/src/app/src/components/Tabber/styles.scss similarity index 100% rename from opentech/static_src/src/app/src/components/Tabber/styles.scss rename to hypha/static_src/src/app/src/components/Tabber/styles.scss diff --git a/opentech/static_src/src/app/src/components/Transitions/SlideInRight.js b/hypha/static_src/src/app/src/components/Transitions/SlideInRight.js similarity index 100% rename from opentech/static_src/src/app/src/components/Transitions/SlideInRight.js rename to hypha/static_src/src/app/src/components/Transitions/SlideInRight.js diff --git a/opentech/static_src/src/app/src/components/Transitions/SlideOutLeft.js b/hypha/static_src/src/app/src/components/Transitions/SlideOutLeft.js similarity index 100% rename from opentech/static_src/src/app/src/components/Transitions/SlideOutLeft.js rename to hypha/static_src/src/app/src/components/Transitions/SlideOutLeft.js diff --git a/opentech/static_src/src/app/src/containers/AddNoteForm.js b/hypha/static_src/src/app/src/containers/AddNoteForm.js similarity index 100% rename from opentech/static_src/src/app/src/containers/AddNoteForm.js rename to hypha/static_src/src/app/src/containers/AddNoteForm.js diff --git a/opentech/static_src/src/app/src/containers/AddNoteForm.scss b/hypha/static_src/src/app/src/containers/AddNoteForm.scss similarity index 100% rename from opentech/static_src/src/app/src/containers/AddNoteForm.scss rename to hypha/static_src/src/app/src/containers/AddNoteForm.scss diff --git a/opentech/static_src/src/app/src/containers/ByRoundListing.js b/hypha/static_src/src/app/src/containers/ByRoundListing.js similarity index 100% rename from opentech/static_src/src/app/src/containers/ByRoundListing.js rename to hypha/static_src/src/app/src/containers/ByRoundListing.js diff --git a/opentech/static_src/src/app/src/containers/ByStatusListing.js b/hypha/static_src/src/app/src/containers/ByStatusListing.js similarity index 100% rename from opentech/static_src/src/app/src/containers/ByStatusListing.js rename to hypha/static_src/src/app/src/containers/ByStatusListing.js diff --git a/opentech/static_src/src/app/src/containers/CurrentSubmissionDisplay.js b/hypha/static_src/src/app/src/containers/CurrentSubmissionDisplay.js similarity index 100% rename from opentech/static_src/src/app/src/containers/CurrentSubmissionDisplay.js rename to hypha/static_src/src/app/src/containers/CurrentSubmissionDisplay.js diff --git a/opentech/static_src/src/app/src/containers/DisplayPanel/index.js b/hypha/static_src/src/app/src/containers/DisplayPanel/index.js similarity index 100% rename from opentech/static_src/src/app/src/containers/DisplayPanel/index.js rename to hypha/static_src/src/app/src/containers/DisplayPanel/index.js diff --git a/opentech/static_src/src/app/src/containers/DisplayPanel/style.scss b/hypha/static_src/src/app/src/containers/DisplayPanel/style.scss similarity index 100% rename from opentech/static_src/src/app/src/containers/DisplayPanel/style.scss rename to hypha/static_src/src/app/src/containers/DisplayPanel/style.scss diff --git a/opentech/static_src/src/app/src/containers/EditNoteForm.js b/hypha/static_src/src/app/src/containers/EditNoteForm.js similarity index 100% rename from opentech/static_src/src/app/src/containers/EditNoteForm.js rename to hypha/static_src/src/app/src/containers/EditNoteForm.js diff --git a/opentech/static_src/src/app/src/containers/GroupByRoundDetailView.js b/hypha/static_src/src/app/src/containers/GroupByRoundDetailView.js similarity index 100% rename from opentech/static_src/src/app/src/containers/GroupByRoundDetailView.js rename to hypha/static_src/src/app/src/containers/GroupByRoundDetailView.js diff --git a/opentech/static_src/src/app/src/containers/GroupByStatusDetailView.js b/hypha/static_src/src/app/src/containers/GroupByStatusDetailView.js similarity index 100% rename from opentech/static_src/src/app/src/containers/GroupByStatusDetailView.js rename to hypha/static_src/src/app/src/containers/GroupByStatusDetailView.js diff --git a/opentech/static_src/src/app/src/containers/MessagesContainer.js b/hypha/static_src/src/app/src/containers/MessagesContainer.js similarity index 100% rename from opentech/static_src/src/app/src/containers/MessagesContainer.js rename to hypha/static_src/src/app/src/containers/MessagesContainer.js diff --git a/opentech/static_src/src/app/src/containers/NoteListing.js b/hypha/static_src/src/app/src/containers/NoteListing.js similarity index 100% rename from opentech/static_src/src/app/src/containers/NoteListing.js rename to hypha/static_src/src/app/src/containers/NoteListing.js diff --git a/opentech/static_src/src/app/src/containers/ReactModal.scss b/hypha/static_src/src/app/src/containers/ReactModal.scss similarity index 100% rename from opentech/static_src/src/app/src/containers/ReactModal.scss rename to hypha/static_src/src/app/src/containers/ReactModal.scss diff --git a/opentech/static_src/src/app/src/containers/ReviewInformation.js b/hypha/static_src/src/app/src/containers/ReviewInformation.js similarity index 100% rename from opentech/static_src/src/app/src/containers/ReviewInformation.js rename to hypha/static_src/src/app/src/containers/ReviewInformation.js diff --git a/opentech/static_src/src/app/src/containers/ScreeningOutcome.js b/hypha/static_src/src/app/src/containers/ScreeningOutcome.js similarity index 100% rename from opentech/static_src/src/app/src/containers/ScreeningOutcome.js rename to hypha/static_src/src/app/src/containers/ScreeningOutcome.js diff --git a/opentech/static_src/src/app/src/containers/StatusActions.js b/hypha/static_src/src/app/src/containers/StatusActions.js similarity index 100% rename from opentech/static_src/src/app/src/containers/StatusActions.js rename to hypha/static_src/src/app/src/containers/StatusActions.js diff --git a/opentech/static_src/src/app/src/containers/StatusActions.scss b/hypha/static_src/src/app/src/containers/StatusActions.scss similarity index 100% rename from opentech/static_src/src/app/src/containers/StatusActions.scss rename to hypha/static_src/src/app/src/containers/StatusActions.scss diff --git a/opentech/static_src/src/app/src/main.scss b/hypha/static_src/src/app/src/main.scss similarity index 100% rename from opentech/static_src/src/app/src/main.scss rename to hypha/static_src/src/app/src/main.scss diff --git a/opentech/static_src/src/app/src/redux/actions/messages.js b/hypha/static_src/src/app/src/redux/actions/messages.js similarity index 100% rename from opentech/static_src/src/app/src/redux/actions/messages.js rename to hypha/static_src/src/app/src/redux/actions/messages.js diff --git a/opentech/static_src/src/app/src/redux/actions/notes.js b/hypha/static_src/src/app/src/redux/actions/notes.js similarity index 100% rename from opentech/static_src/src/app/src/redux/actions/notes.js rename to hypha/static_src/src/app/src/redux/actions/notes.js diff --git a/opentech/static_src/src/app/src/redux/actions/submissions.js b/hypha/static_src/src/app/src/redux/actions/submissions.js similarity index 100% rename from opentech/static_src/src/app/src/redux/actions/submissions.js rename to hypha/static_src/src/app/src/redux/actions/submissions.js diff --git a/opentech/static_src/src/app/src/redux/middleware/api.js b/hypha/static_src/src/app/src/redux/middleware/api.js similarity index 100% rename from opentech/static_src/src/app/src/redux/middleware/api.js rename to hypha/static_src/src/app/src/redux/middleware/api.js diff --git a/opentech/static_src/src/app/src/redux/reducers/index.js b/hypha/static_src/src/app/src/redux/reducers/index.js similarity index 100% rename from opentech/static_src/src/app/src/redux/reducers/index.js rename to hypha/static_src/src/app/src/redux/reducers/index.js diff --git a/opentech/static_src/src/app/src/redux/reducers/messages.js b/hypha/static_src/src/app/src/redux/reducers/messages.js similarity index 100% rename from opentech/static_src/src/app/src/redux/reducers/messages.js rename to hypha/static_src/src/app/src/redux/reducers/messages.js diff --git a/opentech/static_src/src/app/src/redux/reducers/notes.js b/hypha/static_src/src/app/src/redux/reducers/notes.js similarity index 100% rename from opentech/static_src/src/app/src/redux/reducers/notes.js rename to hypha/static_src/src/app/src/redux/reducers/notes.js diff --git a/opentech/static_src/src/app/src/redux/reducers/rounds.js b/hypha/static_src/src/app/src/redux/reducers/rounds.js similarity index 100% rename from opentech/static_src/src/app/src/redux/reducers/rounds.js rename to hypha/static_src/src/app/src/redux/reducers/rounds.js diff --git a/opentech/static_src/src/app/src/redux/reducers/statuses.js b/hypha/static_src/src/app/src/redux/reducers/statuses.js similarity index 100% rename from opentech/static_src/src/app/src/redux/reducers/statuses.js rename to hypha/static_src/src/app/src/redux/reducers/statuses.js diff --git a/opentech/static_src/src/app/src/redux/reducers/submissions.js b/hypha/static_src/src/app/src/redux/reducers/submissions.js similarity index 100% rename from opentech/static_src/src/app/src/redux/reducers/submissions.js rename to hypha/static_src/src/app/src/redux/reducers/submissions.js diff --git a/opentech/static_src/src/app/src/redux/selectors/messages.js b/hypha/static_src/src/app/src/redux/selectors/messages.js similarity index 100% rename from opentech/static_src/src/app/src/redux/selectors/messages.js rename to hypha/static_src/src/app/src/redux/selectors/messages.js diff --git a/opentech/static_src/src/app/src/redux/selectors/notes.js b/hypha/static_src/src/app/src/redux/selectors/notes.js similarity index 100% rename from opentech/static_src/src/app/src/redux/selectors/notes.js rename to hypha/static_src/src/app/src/redux/selectors/notes.js diff --git a/opentech/static_src/src/app/src/redux/selectors/rounds.js b/hypha/static_src/src/app/src/redux/selectors/rounds.js similarity index 100% rename from opentech/static_src/src/app/src/redux/selectors/rounds.js rename to hypha/static_src/src/app/src/redux/selectors/rounds.js diff --git a/opentech/static_src/src/app/src/redux/selectors/statuses.js b/hypha/static_src/src/app/src/redux/selectors/statuses.js similarity index 100% rename from opentech/static_src/src/app/src/redux/selectors/statuses.js rename to hypha/static_src/src/app/src/redux/selectors/statuses.js diff --git a/opentech/static_src/src/app/src/redux/selectors/submissions.js b/hypha/static_src/src/app/src/redux/selectors/submissions.js similarity index 100% rename from opentech/static_src/src/app/src/redux/selectors/submissions.js rename to hypha/static_src/src/app/src/redux/selectors/submissions.js diff --git a/opentech/static_src/src/app/src/redux/store.js b/hypha/static_src/src/app/src/redux/store.js similarity index 100% rename from opentech/static_src/src/app/src/redux/store.js rename to hypha/static_src/src/app/src/redux/store.js diff --git a/opentech/static_src/src/app/src/submissionsByRoundIndex.js b/hypha/static_src/src/app/src/submissionsByRoundIndex.js similarity index 100% rename from opentech/static_src/src/app/src/submissionsByRoundIndex.js rename to hypha/static_src/src/app/src/submissionsByRoundIndex.js diff --git a/opentech/static_src/src/app/src/submissionsByStatusIndex.js b/hypha/static_src/src/app/src/submissionsByStatusIndex.js similarity index 100% rename from opentech/static_src/src/app/src/submissionsByStatusIndex.js rename to hypha/static_src/src/app/src/submissionsByStatusIndex.js diff --git a/opentech/static_src/src/app/src/utils.js b/hypha/static_src/src/app/src/utils.js similarity index 100% rename from opentech/static_src/src/app/src/utils.js rename to hypha/static_src/src/app/src/utils.js diff --git a/opentech/static_src/src/app/webpack.analyze.config.js b/hypha/static_src/src/app/webpack.analyze.config.js similarity index 100% rename from opentech/static_src/src/app/webpack.analyze.config.js rename to hypha/static_src/src/app/webpack.analyze.config.js diff --git a/opentech/static_src/src/app/webpack.base.config.js b/hypha/static_src/src/app/webpack.base.config.js similarity index 100% rename from opentech/static_src/src/app/webpack.base.config.js rename to hypha/static_src/src/app/webpack.base.config.js diff --git a/opentech/static_src/src/app/webpack.dev.config.js b/hypha/static_src/src/app/webpack.dev.config.js similarity index 100% rename from opentech/static_src/src/app/webpack.dev.config.js rename to hypha/static_src/src/app/webpack.dev.config.js diff --git a/opentech/static_src/src/app/webpack.prod.config.js b/hypha/static_src/src/app/webpack.prod.config.js similarity index 100% rename from opentech/static_src/src/app/webpack.prod.config.js rename to hypha/static_src/src/app/webpack.prod.config.js diff --git a/opentech/static_src/src/fonts/montserrat/Montserrat-Black.woff b/hypha/static_src/src/fonts/montserrat/Montserrat-Black.woff similarity index 100% rename from opentech/static_src/src/fonts/montserrat/Montserrat-Black.woff rename to hypha/static_src/src/fonts/montserrat/Montserrat-Black.woff diff --git a/opentech/static_src/src/fonts/montserrat/Montserrat-Bold.woff b/hypha/static_src/src/fonts/montserrat/Montserrat-Bold.woff similarity index 100% rename from opentech/static_src/src/fonts/montserrat/Montserrat-Bold.woff rename to hypha/static_src/src/fonts/montserrat/Montserrat-Bold.woff diff --git a/opentech/static_src/src/fonts/montserrat/Montserrat-Light.woff b/hypha/static_src/src/fonts/montserrat/Montserrat-Light.woff similarity index 100% rename from opentech/static_src/src/fonts/montserrat/Montserrat-Light.woff rename to hypha/static_src/src/fonts/montserrat/Montserrat-Light.woff diff --git a/opentech/static_src/src/fonts/montserrat/Montserrat-Regular.woff b/hypha/static_src/src/fonts/montserrat/Montserrat-Regular.woff similarity index 100% rename from opentech/static_src/src/fonts/montserrat/Montserrat-Regular.woff rename to hypha/static_src/src/fonts/montserrat/Montserrat-Regular.woff diff --git a/opentech/static_src/src/fonts/montserrat/Montserrat-SemiBold.woff b/hypha/static_src/src/fonts/montserrat/Montserrat-SemiBold.woff similarity index 100% rename from opentech/static_src/src/fonts/montserrat/Montserrat-SemiBold.woff rename to hypha/static_src/src/fonts/montserrat/Montserrat-SemiBold.woff diff --git a/opentech/static_src/src/fonts/montserrat/Montserrat-Thin.woff b/hypha/static_src/src/fonts/montserrat/Montserrat-Thin.woff similarity index 100% rename from opentech/static_src/src/fonts/montserrat/Montserrat-Thin.woff rename to hypha/static_src/src/fonts/montserrat/Montserrat-Thin.woff diff --git a/opentech/static_src/src/fonts/noto-sans/NotoSans-Bold.woff b/hypha/static_src/src/fonts/noto-sans/NotoSans-Bold.woff similarity index 100% rename from opentech/static_src/src/fonts/noto-sans/NotoSans-Bold.woff rename to hypha/static_src/src/fonts/noto-sans/NotoSans-Bold.woff diff --git a/opentech/static_src/src/fonts/noto-sans/NotoSans.woff b/hypha/static_src/src/fonts/noto-sans/NotoSans.woff similarity index 100% rename from opentech/static_src/src/fonts/noto-sans/NotoSans.woff rename to hypha/static_src/src/fonts/noto-sans/NotoSans.woff diff --git a/opentech/static_src/src/images/.gitkeep b/hypha/static_src/src/images/.gitkeep similarity index 100% rename from opentech/static_src/src/images/.gitkeep rename to hypha/static_src/src/images/.gitkeep diff --git a/opentech/static_src/src/images/cross.svg b/hypha/static_src/src/images/cross.svg similarity index 100% rename from opentech/static_src/src/images/cross.svg rename to hypha/static_src/src/images/cross.svg diff --git a/opentech/static_src/src/images/download.svg b/hypha/static_src/src/images/download.svg similarity index 100% rename from opentech/static_src/src/images/download.svg rename to hypha/static_src/src/images/download.svg diff --git a/opentech/static_src/src/images/dropdown.svg b/hypha/static_src/src/images/dropdown.svg similarity index 100% rename from opentech/static_src/src/images/dropdown.svg rename to hypha/static_src/src/images/dropdown.svg diff --git a/opentech/static_src/src/images/editor-buttons.png b/hypha/static_src/src/images/editor-buttons.png similarity index 100% rename from opentech/static_src/src/images/editor-buttons.png rename to hypha/static_src/src/images/editor-buttons.png diff --git a/opentech/static_src/src/images/favicons/android-chrome-144.png b/hypha/static_src/src/images/favicons/android-chrome-144.png similarity index 100% rename from opentech/static_src/src/images/favicons/android-chrome-144.png rename to hypha/static_src/src/images/favicons/android-chrome-144.png diff --git a/opentech/static_src/src/images/favicons/apple-icon-120.png b/hypha/static_src/src/images/favicons/apple-icon-120.png similarity index 100% rename from opentech/static_src/src/images/favicons/apple-icon-120.png rename to hypha/static_src/src/images/favicons/apple-icon-120.png diff --git a/opentech/static_src/src/images/favicons/apple-icon-152.png b/hypha/static_src/src/images/favicons/apple-icon-152.png similarity index 100% rename from opentech/static_src/src/images/favicons/apple-icon-152.png rename to hypha/static_src/src/images/favicons/apple-icon-152.png diff --git a/opentech/static_src/src/images/favicons/apple-icon-180.png b/hypha/static_src/src/images/favicons/apple-icon-180.png similarity index 100% rename from opentech/static_src/src/images/favicons/apple-icon-180.png rename to hypha/static_src/src/images/favicons/apple-icon-180.png diff --git a/opentech/static_src/src/images/favicons/apple-icon-76.png b/hypha/static_src/src/images/favicons/apple-icon-76.png similarity index 100% rename from opentech/static_src/src/images/favicons/apple-icon-76.png rename to hypha/static_src/src/images/favicons/apple-icon-76.png diff --git a/opentech/static_src/src/images/favicons/browserconfig.xml b/hypha/static_src/src/images/favicons/browserconfig.xml similarity index 100% rename from opentech/static_src/src/images/favicons/browserconfig.xml rename to hypha/static_src/src/images/favicons/browserconfig.xml diff --git a/opentech/static_src/src/images/favicons/favicon-16.png b/hypha/static_src/src/images/favicons/favicon-16.png similarity index 100% rename from opentech/static_src/src/images/favicons/favicon-16.png rename to hypha/static_src/src/images/favicons/favicon-16.png diff --git a/opentech/static_src/src/images/favicons/favicon-32.png b/hypha/static_src/src/images/favicons/favicon-32.png similarity index 100% rename from opentech/static_src/src/images/favicons/favicon-32.png rename to hypha/static_src/src/images/favicons/favicon-32.png diff --git a/opentech/static_src/src/images/favicons/mstile-150.png b/hypha/static_src/src/images/favicons/mstile-150.png similarity index 100% rename from opentech/static_src/src/images/favicons/mstile-150.png rename to hypha/static_src/src/images/favicons/mstile-150.png diff --git a/opentech/static_src/src/images/favicons/safari-pinned-tab.svg b/hypha/static_src/src/images/favicons/safari-pinned-tab.svg similarity index 100% rename from opentech/static_src/src/images/favicons/safari-pinned-tab.svg rename to hypha/static_src/src/images/favicons/safari-pinned-tab.svg diff --git a/opentech/static_src/src/images/favicons/site.webmanifest.json b/hypha/static_src/src/images/favicons/site.webmanifest.json similarity index 100% rename from opentech/static_src/src/images/favicons/site.webmanifest.json rename to hypha/static_src/src/images/favicons/site.webmanifest.json diff --git a/opentech/static_src/src/images/file.svg b/hypha/static_src/src/images/file.svg similarity index 100% rename from opentech/static_src/src/images/file.svg rename to hypha/static_src/src/images/file.svg diff --git a/opentech/static_src/src/images/filters.svg b/hypha/static_src/src/images/filters.svg similarity index 100% rename from opentech/static_src/src/images/filters.svg rename to hypha/static_src/src/images/filters.svg diff --git a/opentech/static_src/src/images/icon-array.svg b/hypha/static_src/src/images/icon-array.svg similarity index 100% rename from opentech/static_src/src/images/icon-array.svg rename to hypha/static_src/src/images/icon-array.svg diff --git a/opentech/static_src/src/images/icon-grid.svg b/hypha/static_src/src/images/icon-grid.svg similarity index 100% rename from opentech/static_src/src/images/icon-grid.svg rename to hypha/static_src/src/images/icon-grid.svg diff --git a/opentech/static_src/src/images/learnings/bullhorn-icon-red.svg b/hypha/static_src/src/images/learnings/bullhorn-icon-red.svg similarity index 100% rename from opentech/static_src/src/images/learnings/bullhorn-icon-red.svg rename to hypha/static_src/src/images/learnings/bullhorn-icon-red.svg diff --git a/opentech/static_src/src/images/learnings/otf-icon-red.svg b/hypha/static_src/src/images/learnings/otf-icon-red.svg similarity index 100% rename from opentech/static_src/src/images/learnings/otf-icon-red.svg rename to hypha/static_src/src/images/learnings/otf-icon-red.svg diff --git a/opentech/static_src/src/images/learnings/potion-icon-red.svg b/hypha/static_src/src/images/learnings/potion-icon-red.svg similarity index 100% rename from opentech/static_src/src/images/learnings/potion-icon-red.svg rename to hypha/static_src/src/images/learnings/potion-icon-red.svg diff --git a/opentech/static_src/src/images/learnings/user-friends-icon-red.svg b/hypha/static_src/src/images/learnings/user-friends-icon-red.svg similarity index 100% rename from opentech/static_src/src/images/learnings/user-friends-icon-red.svg rename to hypha/static_src/src/images/learnings/user-friends-icon-red.svg diff --git a/opentech/static_src/src/images/note.svg b/hypha/static_src/src/images/note.svg similarity index 100% rename from opentech/static_src/src/images/note.svg rename to hypha/static_src/src/images/note.svg diff --git a/opentech/static_src/src/images/otf_social.jpg b/hypha/static_src/src/images/otf_social.jpg similarity index 100% rename from opentech/static_src/src/images/otf_social.jpg rename to hypha/static_src/src/images/otf_social.jpg diff --git a/opentech/static_src/src/images/quote-outline.svg b/hypha/static_src/src/images/quote-outline.svg similarity index 100% rename from opentech/static_src/src/images/quote-outline.svg rename to hypha/static_src/src/images/quote-outline.svg diff --git a/opentech/static_src/src/images/radio-free-asia-logo.svg b/hypha/static_src/src/images/radio-free-asia-logo.svg similarity index 100% rename from opentech/static_src/src/images/radio-free-asia-logo.svg rename to hypha/static_src/src/images/radio-free-asia-logo.svg diff --git a/opentech/static_src/src/images/sad-note.svg b/hypha/static_src/src/images/sad-note.svg similarity index 100% rename from opentech/static_src/src/images/sad-note.svg rename to hypha/static_src/src/images/sad-note.svg diff --git a/opentech/static_src/src/images/speech-bubble-blue.svg b/hypha/static_src/src/images/speech-bubble-blue.svg similarity index 100% rename from opentech/static_src/src/images/speech-bubble-blue.svg rename to hypha/static_src/src/images/speech-bubble-blue.svg diff --git a/opentech/static_src/src/images/tick.svg b/hypha/static_src/src/images/tick.svg similarity index 100% rename from opentech/static_src/src/images/tick.svg rename to hypha/static_src/src/images/tick.svg diff --git a/opentech/static_src/src/images/upload.svg b/hypha/static_src/src/images/upload.svg similarity index 100% rename from opentech/static_src/src/images/upload.svg rename to hypha/static_src/src/images/upload.svg diff --git a/opentech/static_src/src/images/usagm.png b/hypha/static_src/src/images/usagm.png similarity index 100% rename from opentech/static_src/src/images/usagm.png rename to hypha/static_src/src/images/usagm.png diff --git a/opentech/static_src/src/javascript/apply/all-reviews-table.js b/hypha/static_src/src/javascript/apply/all-reviews-table.js similarity index 100% rename from opentech/static_src/src/javascript/apply/all-reviews-table.js rename to hypha/static_src/src/javascript/apply/all-reviews-table.js diff --git a/opentech/static_src/src/javascript/apply/all-submissions-table.js b/hypha/static_src/src/javascript/apply/all-submissions-table.js similarity index 100% rename from opentech/static_src/src/javascript/apply/all-submissions-table.js rename to hypha/static_src/src/javascript/apply/all-submissions-table.js diff --git a/opentech/static_src/src/javascript/apply/application-form.js b/hypha/static_src/src/javascript/apply/application-form.js similarity index 100% rename from opentech/static_src/src/javascript/apply/application-form.js rename to hypha/static_src/src/javascript/apply/application-form.js diff --git a/opentech/static_src/src/javascript/apply/batch-actions.js b/hypha/static_src/src/javascript/apply/batch-actions.js similarity index 100% rename from opentech/static_src/src/javascript/apply/batch-actions.js rename to hypha/static_src/src/javascript/apply/batch-actions.js diff --git a/opentech/static_src/src/javascript/apply/determination-template.js b/hypha/static_src/src/javascript/apply/determination-template.js similarity index 100% rename from opentech/static_src/src/javascript/apply/determination-template.js rename to hypha/static_src/src/javascript/apply/determination-template.js diff --git a/opentech/static_src/src/javascript/apply/edit-comment.js b/hypha/static_src/src/javascript/apply/edit-comment.js similarity index 100% rename from opentech/static_src/src/javascript/apply/edit-comment.js rename to hypha/static_src/src/javascript/apply/edit-comment.js diff --git a/opentech/static_src/src/javascript/apply/fancybox-global.js b/hypha/static_src/src/javascript/apply/fancybox-global.js similarity index 100% rename from opentech/static_src/src/javascript/apply/fancybox-global.js rename to hypha/static_src/src/javascript/apply/fancybox-global.js diff --git a/opentech/static_src/src/javascript/apply/file-uploads.js b/hypha/static_src/src/javascript/apply/file-uploads.js similarity index 100% rename from opentech/static_src/src/javascript/apply/file-uploads.js rename to hypha/static_src/src/javascript/apply/file-uploads.js diff --git a/opentech/static_src/src/javascript/apply/flag.js b/hypha/static_src/src/javascript/apply/flag.js similarity index 100% rename from opentech/static_src/src/javascript/apply/flag.js rename to hypha/static_src/src/javascript/apply/flag.js diff --git a/opentech/static_src/src/javascript/apply/form-group-toggle.js b/hypha/static_src/src/javascript/apply/form-group-toggle.js similarity index 100% rename from opentech/static_src/src/javascript/apply/form-group-toggle.js rename to hypha/static_src/src/javascript/apply/form-group-toggle.js diff --git a/opentech/static_src/src/javascript/apply/list-input-files.js b/hypha/static_src/src/javascript/apply/list-input-files.js similarity index 100% rename from opentech/static_src/src/javascript/apply/list-input-files.js rename to hypha/static_src/src/javascript/apply/list-input-files.js diff --git a/opentech/static_src/src/javascript/apply/mailgun-validator.js b/hypha/static_src/src/javascript/apply/mailgun-validator.js similarity index 100% rename from opentech/static_src/src/javascript/apply/mailgun-validator.js rename to hypha/static_src/src/javascript/apply/mailgun-validator.js diff --git a/opentech/static_src/src/javascript/apply/past-reports-pagination.js b/hypha/static_src/src/javascript/apply/past-reports-pagination.js similarity index 100% rename from opentech/static_src/src/javascript/apply/past-reports-pagination.js rename to hypha/static_src/src/javascript/apply/past-reports-pagination.js diff --git a/opentech/static_src/src/javascript/apply/report-calculator.js b/hypha/static_src/src/javascript/apply/report-calculator.js similarity index 100% rename from opentech/static_src/src/javascript/apply/report-calculator.js rename to hypha/static_src/src/javascript/apply/report-calculator.js diff --git a/opentech/static_src/src/javascript/apply/submission-filters.js b/hypha/static_src/src/javascript/apply/submission-filters.js similarity index 100% rename from opentech/static_src/src/javascript/apply/submission-filters.js rename to hypha/static_src/src/javascript/apply/submission-filters.js diff --git a/opentech/static_src/src/javascript/apply/submission-text-cleanup.js b/hypha/static_src/src/javascript/apply/submission-text-cleanup.js similarity index 100% rename from opentech/static_src/src/javascript/apply/submission-text-cleanup.js rename to hypha/static_src/src/javascript/apply/submission-text-cleanup.js diff --git a/opentech/static_src/src/javascript/apply/submission-tooltips.js b/hypha/static_src/src/javascript/apply/submission-tooltips.js similarity index 100% rename from opentech/static_src/src/javascript/apply/submission-tooltips.js rename to hypha/static_src/src/javascript/apply/submission-tooltips.js diff --git a/opentech/static_src/src/javascript/apply/tabs.js b/hypha/static_src/src/javascript/apply/tabs.js similarity index 100% rename from opentech/static_src/src/javascript/apply/tabs.js rename to hypha/static_src/src/javascript/apply/tabs.js diff --git a/opentech/static_src/src/javascript/apply/tinymce-word-count.js b/hypha/static_src/src/javascript/apply/tinymce-word-count.js similarity index 100% rename from opentech/static_src/src/javascript/apply/tinymce-word-count.js rename to hypha/static_src/src/javascript/apply/tinymce-word-count.js diff --git a/opentech/static_src/src/javascript/apply/toggle-actions-panel.js b/hypha/static_src/src/javascript/apply/toggle-actions-panel.js similarity index 100% rename from opentech/static_src/src/javascript/apply/toggle-actions-panel.js rename to hypha/static_src/src/javascript/apply/toggle-actions-panel.js diff --git a/opentech/static_src/src/javascript/apply/toggle-payment-block.js b/hypha/static_src/src/javascript/apply/toggle-payment-block.js similarity index 100% rename from opentech/static_src/src/javascript/apply/toggle-payment-block.js rename to hypha/static_src/src/javascript/apply/toggle-payment-block.js diff --git a/opentech/static_src/src/javascript/apply/toggle-proposal-info.js b/hypha/static_src/src/javascript/apply/toggle-proposal-info.js similarity index 100% rename from opentech/static_src/src/javascript/apply/toggle-proposal-info.js rename to hypha/static_src/src/javascript/apply/toggle-proposal-info.js diff --git a/opentech/static_src/src/javascript/apply/toggle-related.js b/hypha/static_src/src/javascript/apply/toggle-related.js similarity index 100% rename from opentech/static_src/src/javascript/apply/toggle-related.js rename to hypha/static_src/src/javascript/apply/toggle-related.js diff --git a/opentech/static_src/src/javascript/apply/toggle-reviewers.js b/hypha/static_src/src/javascript/apply/toggle-reviewers.js similarity index 100% rename from opentech/static_src/src/javascript/apply/toggle-reviewers.js rename to hypha/static_src/src/javascript/apply/toggle-reviewers.js diff --git a/opentech/static_src/src/javascript/apply/toggle-sidebar.js b/hypha/static_src/src/javascript/apply/toggle-sidebar.js similarity index 100% rename from opentech/static_src/src/javascript/apply/toggle-sidebar.js rename to hypha/static_src/src/javascript/apply/toggle-sidebar.js diff --git a/opentech/static_src/src/javascript/jquery.min.js b/hypha/static_src/src/javascript/jquery.min.js similarity index 100% rename from opentech/static_src/src/javascript/jquery.min.js rename to hypha/static_src/src/javascript/jquery.min.js diff --git a/opentech/static_src/src/javascript/js.cookie.min.js b/hypha/static_src/src/javascript/js.cookie.min.js similarity index 100% rename from opentech/static_src/src/javascript/js.cookie.min.js rename to hypha/static_src/src/javascript/js.cookie.min.js diff --git a/opentech/static_src/src/javascript/main.js b/hypha/static_src/src/javascript/main.js similarity index 100% rename from opentech/static_src/src/javascript/main.js rename to hypha/static_src/src/javascript/main.js diff --git a/opentech/static_src/src/javascript/public/dataviz-iframe.js b/hypha/static_src/src/javascript/public/dataviz-iframe.js similarity index 100% rename from opentech/static_src/src/javascript/public/dataviz-iframe.js rename to hypha/static_src/src/javascript/public/dataviz-iframe.js diff --git a/opentech/static_src/src/javascript/public/page-box.js b/hypha/static_src/src/javascript/public/page-box.js similarity index 100% rename from opentech/static_src/src/javascript/public/page-box.js rename to hypha/static_src/src/javascript/public/page-box.js diff --git a/opentech/static_src/src/javascript/public/protect-form.js b/hypha/static_src/src/javascript/public/protect-form.js similarity index 100% rename from opentech/static_src/src/javascript/public/protect-form.js rename to hypha/static_src/src/javascript/public/protect-form.js diff --git a/opentech/static_src/src/sass/apply/abstracts/_functions.scss b/hypha/static_src/src/sass/apply/abstracts/_functions.scss similarity index 100% rename from opentech/static_src/src/sass/apply/abstracts/_functions.scss rename to hypha/static_src/src/sass/apply/abstracts/_functions.scss diff --git a/opentech/static_src/src/sass/apply/abstracts/_mixins.scss b/hypha/static_src/src/sass/apply/abstracts/_mixins.scss similarity index 100% rename from opentech/static_src/src/sass/apply/abstracts/_mixins.scss rename to hypha/static_src/src/sass/apply/abstracts/_mixins.scss diff --git a/opentech/static_src/src/sass/apply/abstracts/_variables.scss b/hypha/static_src/src/sass/apply/abstracts/_variables.scss similarity index 100% rename from opentech/static_src/src/sass/apply/abstracts/_variables.scss rename to hypha/static_src/src/sass/apply/abstracts/_variables.scss diff --git a/opentech/static_src/src/sass/apply/base/_base.scss b/hypha/static_src/src/sass/apply/base/_base.scss similarity index 100% rename from opentech/static_src/src/sass/apply/base/_base.scss rename to hypha/static_src/src/sass/apply/base/_base.scss diff --git a/opentech/static_src/src/sass/apply/base/_typography.scss b/hypha/static_src/src/sass/apply/base/_typography.scss similarity index 100% rename from opentech/static_src/src/sass/apply/base/_typography.scss rename to hypha/static_src/src/sass/apply/base/_typography.scss diff --git a/opentech/static_src/src/sass/apply/components/_actions-bar.scss b/hypha/static_src/src/sass/apply/components/_actions-bar.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_actions-bar.scss rename to hypha/static_src/src/sass/apply/components/_actions-bar.scss diff --git a/opentech/static_src/src/sass/apply/components/_admin-bar.scss b/hypha/static_src/src/sass/apply/components/_admin-bar.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_admin-bar.scss rename to hypha/static_src/src/sass/apply/components/_admin-bar.scss diff --git a/opentech/static_src/src/sass/apply/components/_alert.scss b/hypha/static_src/src/sass/apply/components/_alert.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_alert.scss rename to hypha/static_src/src/sass/apply/components/_alert.scss diff --git a/opentech/static_src/src/sass/apply/components/_all-submissions-table.scss b/hypha/static_src/src/sass/apply/components/_all-submissions-table.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_all-submissions-table.scss rename to hypha/static_src/src/sass/apply/components/_all-submissions-table.scss diff --git a/opentech/static_src/src/sass/apply/components/_button.scss b/hypha/static_src/src/sass/apply/components/_button.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_button.scss rename to hypha/static_src/src/sass/apply/components/_button.scss diff --git a/opentech/static_src/src/sass/apply/components/_card.scss b/hypha/static_src/src/sass/apply/components/_card.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_card.scss rename to hypha/static_src/src/sass/apply/components/_card.scss diff --git a/opentech/static_src/src/sass/apply/components/_comment.scss b/hypha/static_src/src/sass/apply/components/_comment.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_comment.scss rename to hypha/static_src/src/sass/apply/components/_comment.scss diff --git a/opentech/static_src/src/sass/apply/components/_data-block.scss b/hypha/static_src/src/sass/apply/components/_data-block.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_data-block.scss rename to hypha/static_src/src/sass/apply/components/_data-block.scss diff --git a/opentech/static_src/src/sass/apply/components/_docs-block.scss b/hypha/static_src/src/sass/apply/components/_docs-block.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_docs-block.scss rename to hypha/static_src/src/sass/apply/components/_docs-block.scss diff --git a/opentech/static_src/src/sass/apply/components/_editor.scss b/hypha/static_src/src/sass/apply/components/_editor.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_editor.scss rename to hypha/static_src/src/sass/apply/components/_editor.scss diff --git a/opentech/static_src/src/sass/apply/components/_error-bar.scss b/hypha/static_src/src/sass/apply/components/_error-bar.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_error-bar.scss rename to hypha/static_src/src/sass/apply/components/_error-bar.scss diff --git a/opentech/static_src/src/sass/apply/components/_feed.scss b/hypha/static_src/src/sass/apply/components/_feed.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_feed.scss rename to hypha/static_src/src/sass/apply/components/_feed.scss diff --git a/opentech/static_src/src/sass/apply/components/_filters.scss b/hypha/static_src/src/sass/apply/components/_filters.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_filters.scss rename to hypha/static_src/src/sass/apply/components/_filters.scss diff --git a/opentech/static_src/src/sass/apply/components/_form.scss b/hypha/static_src/src/sass/apply/components/_form.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_form.scss rename to hypha/static_src/src/sass/apply/components/_form.scss diff --git a/opentech/static_src/src/sass/apply/components/_funding-block.scss b/hypha/static_src/src/sass/apply/components/_funding-block.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_funding-block.scss rename to hypha/static_src/src/sass/apply/components/_funding-block.scss diff --git a/opentech/static_src/src/sass/apply/components/_grid.scss b/hypha/static_src/src/sass/apply/components/_grid.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_grid.scss rename to hypha/static_src/src/sass/apply/components/_grid.scss diff --git a/opentech/static_src/src/sass/apply/components/_heading.scss b/hypha/static_src/src/sass/apply/components/_heading.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_heading.scss rename to hypha/static_src/src/sass/apply/components/_heading.scss diff --git a/opentech/static_src/src/sass/apply/components/_icon.scss b/hypha/static_src/src/sass/apply/components/_icon.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_icon.scss rename to hypha/static_src/src/sass/apply/components/_icon.scss diff --git a/opentech/static_src/src/sass/apply/components/_input.scss b/hypha/static_src/src/sass/apply/components/_input.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_input.scss rename to hypha/static_src/src/sass/apply/components/_input.scss diff --git a/opentech/static_src/src/sass/apply/components/_invoice-block.scss b/hypha/static_src/src/sass/apply/components/_invoice-block.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_invoice-block.scss rename to hypha/static_src/src/sass/apply/components/_invoice-block.scss diff --git a/opentech/static_src/src/sass/apply/components/_link.scss b/hypha/static_src/src/sass/apply/components/_link.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_link.scss rename to hypha/static_src/src/sass/apply/components/_link.scss diff --git a/opentech/static_src/src/sass/apply/components/_list-reveal.scss b/hypha/static_src/src/sass/apply/components/_list-reveal.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_list-reveal.scss rename to hypha/static_src/src/sass/apply/components/_list-reveal.scss diff --git a/opentech/static_src/src/sass/apply/components/_list.scss b/hypha/static_src/src/sass/apply/components/_list.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_list.scss rename to hypha/static_src/src/sass/apply/components/_list.scss diff --git a/opentech/static_src/src/sass/apply/components/_messages.scss b/hypha/static_src/src/sass/apply/components/_messages.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_messages.scss rename to hypha/static_src/src/sass/apply/components/_messages.scss diff --git a/opentech/static_src/src/sass/apply/components/_modal.scss b/hypha/static_src/src/sass/apply/components/_modal.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_modal.scss rename to hypha/static_src/src/sass/apply/components/_modal.scss diff --git a/opentech/static_src/src/sass/apply/components/_nav.scss b/hypha/static_src/src/sass/apply/components/_nav.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_nav.scss rename to hypha/static_src/src/sass/apply/components/_nav.scss diff --git a/opentech/static_src/src/sass/apply/components/_pagination.scss b/hypha/static_src/src/sass/apply/components/_pagination.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_pagination.scss rename to hypha/static_src/src/sass/apply/components/_pagination.scss diff --git a/opentech/static_src/src/sass/apply/components/_profile.scss b/hypha/static_src/src/sass/apply/components/_profile.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_profile.scss rename to hypha/static_src/src/sass/apply/components/_profile.scss diff --git a/opentech/static_src/src/sass/apply/components/_projects-table.scss b/hypha/static_src/src/sass/apply/components/_projects-table.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_projects-table.scss rename to hypha/static_src/src/sass/apply/components/_projects-table.scss diff --git a/opentech/static_src/src/sass/apply/components/_related-sidebar.scss b/hypha/static_src/src/sass/apply/components/_related-sidebar.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_related-sidebar.scss rename to hypha/static_src/src/sass/apply/components/_related-sidebar.scss diff --git a/opentech/static_src/src/sass/apply/components/_responsive-table.scss b/hypha/static_src/src/sass/apply/components/_responsive-table.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_responsive-table.scss rename to hypha/static_src/src/sass/apply/components/_responsive-table.scss diff --git a/opentech/static_src/src/sass/apply/components/_reviewer-dash-box.scss b/hypha/static_src/src/sass/apply/components/_reviewer-dash-box.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_reviewer-dash-box.scss rename to hypha/static_src/src/sass/apply/components/_reviewer-dash-box.scss diff --git a/opentech/static_src/src/sass/apply/components/_reviews-list.scss b/hypha/static_src/src/sass/apply/components/_reviews-list.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_reviews-list.scss rename to hypha/static_src/src/sass/apply/components/_reviews-list.scss diff --git a/opentech/static_src/src/sass/apply/components/_reviews-sidebar.scss b/hypha/static_src/src/sass/apply/components/_reviews-sidebar.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_reviews-sidebar.scss rename to hypha/static_src/src/sass/apply/components/_reviews-sidebar.scss diff --git a/opentech/static_src/src/sass/apply/components/_reviews-summary.scss b/hypha/static_src/src/sass/apply/components/_reviews-summary.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_reviews-summary.scss rename to hypha/static_src/src/sass/apply/components/_reviews-summary.scss diff --git a/opentech/static_src/src/sass/apply/components/_revision.scss b/hypha/static_src/src/sass/apply/components/_revision.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_revision.scss rename to hypha/static_src/src/sass/apply/components/_revision.scss diff --git a/opentech/static_src/src/sass/apply/components/_revisions.scss b/hypha/static_src/src/sass/apply/components/_revisions.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_revisions.scss rename to hypha/static_src/src/sass/apply/components/_revisions.scss diff --git a/opentech/static_src/src/sass/apply/components/_rich-text.scss b/hypha/static_src/src/sass/apply/components/_rich-text.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_rich-text.scss rename to hypha/static_src/src/sass/apply/components/_rich-text.scss diff --git a/opentech/static_src/src/sass/apply/components/_round-block.scss b/hypha/static_src/src/sass/apply/components/_round-block.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_round-block.scss rename to hypha/static_src/src/sass/apply/components/_round-block.scss diff --git a/opentech/static_src/src/sass/apply/components/_section.scss b/hypha/static_src/src/sass/apply/components/_section.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_section.scss rename to hypha/static_src/src/sass/apply/components/_section.scss diff --git a/opentech/static_src/src/sass/apply/components/_select2.scss b/hypha/static_src/src/sass/apply/components/_select2.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_select2.scss rename to hypha/static_src/src/sass/apply/components/_select2.scss diff --git a/opentech/static_src/src/sass/apply/components/_sidebar.scss b/hypha/static_src/src/sass/apply/components/_sidebar.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_sidebar.scss rename to hypha/static_src/src/sass/apply/components/_sidebar.scss diff --git a/opentech/static_src/src/sass/apply/components/_simplified.scss b/hypha/static_src/src/sass/apply/components/_simplified.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_simplified.scss rename to hypha/static_src/src/sass/apply/components/_simplified.scss diff --git a/opentech/static_src/src/sass/apply/components/_stat-block.scss b/hypha/static_src/src/sass/apply/components/_stat-block.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_stat-block.scss rename to hypha/static_src/src/sass/apply/components/_stat-block.scss diff --git a/opentech/static_src/src/sass/apply/components/_status-bar.scss b/hypha/static_src/src/sass/apply/components/_status-bar.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_status-bar.scss rename to hypha/static_src/src/sass/apply/components/_status-bar.scss diff --git a/opentech/static_src/src/sass/apply/components/_status-block.scss b/hypha/static_src/src/sass/apply/components/_status-block.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_status-block.scss rename to hypha/static_src/src/sass/apply/components/_status-block.scss diff --git a/opentech/static_src/src/sass/apply/components/_submission-meta.scss b/hypha/static_src/src/sass/apply/components/_submission-meta.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_submission-meta.scss rename to hypha/static_src/src/sass/apply/components/_submission-meta.scss diff --git a/opentech/static_src/src/sass/apply/components/_table.scss b/hypha/static_src/src/sass/apply/components/_table.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_table.scss rename to hypha/static_src/src/sass/apply/components/_table.scss diff --git a/opentech/static_src/src/sass/apply/components/_tabs.scss b/hypha/static_src/src/sass/apply/components/_tabs.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_tabs.scss rename to hypha/static_src/src/sass/apply/components/_tabs.scss diff --git a/opentech/static_src/src/sass/apply/components/_tooltip.scss b/hypha/static_src/src/sass/apply/components/_tooltip.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_tooltip.scss rename to hypha/static_src/src/sass/apply/components/_tooltip.scss diff --git a/opentech/static_src/src/sass/apply/components/_traffic-light.scss b/hypha/static_src/src/sass/apply/components/_traffic-light.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_traffic-light.scss rename to hypha/static_src/src/sass/apply/components/_traffic-light.scss diff --git a/opentech/static_src/src/sass/apply/components/_wrapper.scss b/hypha/static_src/src/sass/apply/components/_wrapper.scss similarity index 100% rename from opentech/static_src/src/sass/apply/components/_wrapper.scss rename to hypha/static_src/src/sass/apply/components/_wrapper.scss diff --git a/opentech/static_src/src/sass/apply/fancybox.scss b/hypha/static_src/src/sass/apply/fancybox.scss similarity index 100% rename from opentech/static_src/src/sass/apply/fancybox.scss rename to hypha/static_src/src/sass/apply/fancybox.scss diff --git a/opentech/static_src/src/sass/apply/layout/_header.scss b/hypha/static_src/src/sass/apply/layout/_header.scss similarity index 100% rename from opentech/static_src/src/sass/apply/layout/_header.scss rename to hypha/static_src/src/sass/apply/layout/_header.scss diff --git a/opentech/static_src/src/sass/apply/main.scss b/hypha/static_src/src/sass/apply/main.scss similarity index 100% rename from opentech/static_src/src/sass/apply/main.scss rename to hypha/static_src/src/sass/apply/main.scss diff --git a/opentech/static_src/src/sass/apply/wagtail_editor.scss b/hypha/static_src/src/sass/apply/wagtail_editor.scss similarity index 100% rename from opentech/static_src/src/sass/apply/wagtail_editor.scss rename to hypha/static_src/src/sass/apply/wagtail_editor.scss diff --git a/opentech/static_src/src/sass/normalize.scss b/hypha/static_src/src/sass/normalize.scss similarity index 100% rename from opentech/static_src/src/sass/normalize.scss rename to hypha/static_src/src/sass/normalize.scss diff --git a/opentech/static_src/src/sass/print.scss b/hypha/static_src/src/sass/print.scss similarity index 100% rename from opentech/static_src/src/sass/print.scss rename to hypha/static_src/src/sass/print.scss diff --git a/opentech/static_src/src/sass/public/abstracts/_functions.scss b/hypha/static_src/src/sass/public/abstracts/_functions.scss similarity index 100% rename from opentech/static_src/src/sass/public/abstracts/_functions.scss rename to hypha/static_src/src/sass/public/abstracts/_functions.scss diff --git a/opentech/static_src/src/sass/public/abstracts/_mixins.scss b/hypha/static_src/src/sass/public/abstracts/_mixins.scss similarity index 100% rename from opentech/static_src/src/sass/public/abstracts/_mixins.scss rename to hypha/static_src/src/sass/public/abstracts/_mixins.scss diff --git a/opentech/static_src/src/sass/public/abstracts/_variables.scss b/hypha/static_src/src/sass/public/abstracts/_variables.scss similarity index 100% rename from opentech/static_src/src/sass/public/abstracts/_variables.scss rename to hypha/static_src/src/sass/public/abstracts/_variables.scss diff --git a/opentech/static_src/src/sass/public/base/_base.scss b/hypha/static_src/src/sass/public/base/_base.scss similarity index 100% rename from opentech/static_src/src/sass/public/base/_base.scss rename to hypha/static_src/src/sass/public/base/_base.scss diff --git a/opentech/static_src/src/sass/public/base/_typography.scss b/hypha/static_src/src/sass/public/base/_typography.scss similarity index 100% rename from opentech/static_src/src/sass/public/base/_typography.scss rename to hypha/static_src/src/sass/public/base/_typography.scss diff --git a/opentech/static_src/src/sass/public/components/_apply-bar.scss b/hypha/static_src/src/sass/public/components/_apply-bar.scss similarity index 100% rename from opentech/static_src/src/sass/public/components/_apply-bar.scss rename to hypha/static_src/src/sass/public/components/_apply-bar.scss diff --git a/opentech/static_src/src/sass/public/components/_blockquote.scss b/hypha/static_src/src/sass/public/components/_blockquote.scss similarity index 100% rename from opentech/static_src/src/sass/public/components/_blockquote.scss rename to hypha/static_src/src/sass/public/components/_blockquote.scss diff --git a/opentech/static_src/src/sass/public/components/_button.scss b/hypha/static_src/src/sass/public/components/_button.scss similarity index 100% rename from opentech/static_src/src/sass/public/components/_button.scss rename to hypha/static_src/src/sass/public/components/_button.scss diff --git a/opentech/static_src/src/sass/public/components/_call-to-action.scss b/hypha/static_src/src/sass/public/components/_call-to-action.scss similarity index 100% rename from opentech/static_src/src/sass/public/components/_call-to-action.scss rename to hypha/static_src/src/sass/public/components/_call-to-action.scss diff --git a/opentech/static_src/src/sass/public/components/_card.scss b/hypha/static_src/src/sass/public/components/_card.scss similarity index 100% rename from opentech/static_src/src/sass/public/components/_card.scss rename to hypha/static_src/src/sass/public/components/_card.scss diff --git a/opentech/static_src/src/sass/public/components/_editor.scss b/hypha/static_src/src/sass/public/components/_editor.scss similarity index 100% rename from opentech/static_src/src/sass/public/components/_editor.scss rename to hypha/static_src/src/sass/public/components/_editor.scss diff --git a/opentech/static_src/src/sass/public/components/_focus-area.scss b/hypha/static_src/src/sass/public/components/_focus-area.scss similarity index 100% rename from opentech/static_src/src/sass/public/components/_focus-area.scss rename to hypha/static_src/src/sass/public/components/_focus-area.scss diff --git a/opentech/static_src/src/sass/public/components/_form.scss b/hypha/static_src/src/sass/public/components/_form.scss similarity index 100% rename from opentech/static_src/src/sass/public/components/_form.scss rename to hypha/static_src/src/sass/public/components/_form.scss diff --git a/opentech/static_src/src/sass/public/components/_fund-box.scss b/hypha/static_src/src/sass/public/components/_fund-box.scss similarity index 100% rename from opentech/static_src/src/sass/public/components/_fund-box.scss rename to hypha/static_src/src/sass/public/components/_fund-box.scss diff --git a/opentech/static_src/src/sass/public/components/_grid.scss b/hypha/static_src/src/sass/public/components/_grid.scss similarity index 100% rename from opentech/static_src/src/sass/public/components/_grid.scss rename to hypha/static_src/src/sass/public/components/_grid.scss diff --git a/opentech/static_src/src/sass/public/components/_heading.scss b/hypha/static_src/src/sass/public/components/_heading.scss similarity index 100% rename from opentech/static_src/src/sass/public/components/_heading.scss rename to hypha/static_src/src/sass/public/components/_heading.scss diff --git a/opentech/static_src/src/sass/public/components/_icon.scss b/hypha/static_src/src/sass/public/components/_icon.scss similarity index 100% rename from opentech/static_src/src/sass/public/components/_icon.scss rename to hypha/static_src/src/sass/public/components/_icon.scss diff --git a/opentech/static_src/src/sass/public/components/_image.scss b/hypha/static_src/src/sass/public/components/_image.scss similarity index 100% rename from opentech/static_src/src/sass/public/components/_image.scss rename to hypha/static_src/src/sass/public/components/_image.scss diff --git a/opentech/static_src/src/sass/public/components/_input.scss b/hypha/static_src/src/sass/public/components/_input.scss similarity index 100% rename from opentech/static_src/src/sass/public/components/_input.scss rename to hypha/static_src/src/sass/public/components/_input.scss diff --git a/opentech/static_src/src/sass/public/components/_link.scss b/hypha/static_src/src/sass/public/components/_link.scss similarity index 100% rename from opentech/static_src/src/sass/public/components/_link.scss rename to hypha/static_src/src/sass/public/components/_link.scss diff --git a/opentech/static_src/src/sass/public/components/_list.scss b/hypha/static_src/src/sass/public/components/_list.scss similarity index 100% rename from opentech/static_src/src/sass/public/components/_list.scss rename to hypha/static_src/src/sass/public/components/_list.scss diff --git a/opentech/static_src/src/sass/public/components/_listing.scss b/hypha/static_src/src/sass/public/components/_listing.scss similarity index 100% rename from opentech/static_src/src/sass/public/components/_listing.scss rename to hypha/static_src/src/sass/public/components/_listing.scss diff --git a/opentech/static_src/src/sass/public/components/_media-box.scss b/hypha/static_src/src/sass/public/components/_media-box.scss similarity index 100% rename from opentech/static_src/src/sass/public/components/_media-box.scss rename to hypha/static_src/src/sass/public/components/_media-box.scss diff --git a/opentech/static_src/src/sass/public/components/_messages.scss b/hypha/static_src/src/sass/public/components/_messages.scss similarity index 100% rename from opentech/static_src/src/sass/public/components/_messages.scss rename to hypha/static_src/src/sass/public/components/_messages.scss diff --git a/opentech/static_src/src/sass/public/components/_nav.scss b/hypha/static_src/src/sass/public/components/_nav.scss similarity index 100% rename from opentech/static_src/src/sass/public/components/_nav.scss rename to hypha/static_src/src/sass/public/components/_nav.scss diff --git a/opentech/static_src/src/sass/public/components/_page-box.scss b/hypha/static_src/src/sass/public/components/_page-box.scss similarity index 100% rename from opentech/static_src/src/sass/public/components/_page-box.scss rename to hypha/static_src/src/sass/public/components/_page-box.scss diff --git a/opentech/static_src/src/sass/public/components/_pagination.scss b/hypha/static_src/src/sass/public/components/_pagination.scss similarity index 100% rename from opentech/static_src/src/sass/public/components/_pagination.scss rename to hypha/static_src/src/sass/public/components/_pagination.scss diff --git a/opentech/static_src/src/sass/public/components/_responsive-object.scss b/hypha/static_src/src/sass/public/components/_responsive-object.scss similarity index 100% rename from opentech/static_src/src/sass/public/components/_responsive-object.scss rename to hypha/static_src/src/sass/public/components/_responsive-object.scss diff --git a/opentech/static_src/src/sass/public/components/_rich-text.scss b/hypha/static_src/src/sass/public/components/_rich-text.scss similarity index 100% rename from opentech/static_src/src/sass/public/components/_rich-text.scss rename to hypha/static_src/src/sass/public/components/_rich-text.scss diff --git a/opentech/static_src/src/sass/public/components/_section.scss b/hypha/static_src/src/sass/public/components/_section.scss similarity index 100% rename from opentech/static_src/src/sass/public/components/_section.scss rename to hypha/static_src/src/sass/public/components/_section.scss diff --git a/opentech/static_src/src/sass/public/components/_select2.scss b/hypha/static_src/src/sass/public/components/_select2.scss similarity index 100% rename from opentech/static_src/src/sass/public/components/_select2.scss rename to hypha/static_src/src/sass/public/components/_select2.scss diff --git a/opentech/static_src/src/sass/public/components/_show-more.scss b/hypha/static_src/src/sass/public/components/_show-more.scss similarity index 100% rename from opentech/static_src/src/sass/public/components/_show-more.scss rename to hypha/static_src/src/sass/public/components/_show-more.scss diff --git a/opentech/static_src/src/sass/public/components/_wrapper.scss b/hypha/static_src/src/sass/public/components/_wrapper.scss similarity index 100% rename from opentech/static_src/src/sass/public/components/_wrapper.scss rename to hypha/static_src/src/sass/public/components/_wrapper.scss diff --git a/opentech/static_src/src/sass/public/layout/_footer.scss b/hypha/static_src/src/sass/public/layout/_footer.scss similarity index 100% rename from opentech/static_src/src/sass/public/layout/_footer.scss rename to hypha/static_src/src/sass/public/layout/_footer.scss diff --git a/opentech/static_src/src/sass/public/layout/_header.scss b/hypha/static_src/src/sass/public/layout/_header.scss similarity index 100% rename from opentech/static_src/src/sass/public/layout/_header.scss rename to hypha/static_src/src/sass/public/layout/_header.scss diff --git a/opentech/static_src/src/sass/public/layout/_sidebar.scss b/hypha/static_src/src/sass/public/layout/_sidebar.scss similarity index 100% rename from opentech/static_src/src/sass/public/layout/_sidebar.scss rename to hypha/static_src/src/sass/public/layout/_sidebar.scss diff --git a/opentech/static_src/src/sass/public/main.scss b/hypha/static_src/src/sass/public/main.scss similarity index 100% rename from opentech/static_src/src/sass/public/main.scss rename to hypha/static_src/src/sass/public/main.scss diff --git a/opentech/storage_backends.py b/hypha/storage_backends.py similarity index 100% rename from opentech/storage_backends.py rename to hypha/storage_backends.py diff --git a/opentech/templates/404.html b/hypha/templates/404.html similarity index 100% rename from opentech/templates/404.html rename to hypha/templates/404.html diff --git a/opentech/templates/500.html b/hypha/templates/500.html similarity index 100% rename from opentech/templates/500.html rename to hypha/templates/500.html diff --git a/opentech/templates/base-apply.html b/hypha/templates/base-apply.html similarity index 100% rename from opentech/templates/base-apply.html rename to hypha/templates/base-apply.html diff --git a/opentech/templates/base.html b/hypha/templates/base.html similarity index 100% rename from opentech/templates/base.html rename to hypha/templates/base.html diff --git a/opentech/templates/blocks/apply_link_block.html b/hypha/templates/blocks/apply_link_block.html similarity index 100% rename from opentech/templates/blocks/apply_link_block.html rename to hypha/templates/blocks/apply_link_block.html diff --git a/opentech/templates/blocks/box_block.html b/hypha/templates/blocks/box_block.html similarity index 100% rename from opentech/templates/blocks/box_block.html rename to hypha/templates/blocks/box_block.html diff --git a/opentech/templates/blocks/call_to_action_block.html b/hypha/templates/blocks/call_to_action_block.html similarity index 100% rename from opentech/templates/blocks/call_to_action_block.html rename to hypha/templates/blocks/call_to_action_block.html diff --git a/opentech/templates/blocks/document_block.html b/hypha/templates/blocks/document_block.html similarity index 100% rename from opentech/templates/blocks/document_block.html rename to hypha/templates/blocks/document_block.html diff --git a/opentech/templates/blocks/image_block.html b/hypha/templates/blocks/image_block.html similarity index 100% rename from opentech/templates/blocks/image_block.html rename to hypha/templates/blocks/image_block.html diff --git a/opentech/templates/blocks/quote_block.html b/hypha/templates/blocks/quote_block.html similarity index 100% rename from opentech/templates/blocks/quote_block.html rename to hypha/templates/blocks/quote_block.html diff --git a/opentech/templates/blocks/stream_block.html b/hypha/templates/blocks/stream_block.html similarity index 100% rename from opentech/templates/blocks/stream_block.html rename to hypha/templates/blocks/stream_block.html diff --git a/opentech/templates/django/forms/widgets/date.html b/hypha/templates/django/forms/widgets/date.html similarity index 100% rename from opentech/templates/django/forms/widgets/date.html rename to hypha/templates/django/forms/widgets/date.html diff --git a/opentech/templates/django/forms/widgets/datetime.html b/hypha/templates/django/forms/widgets/datetime.html similarity index 100% rename from opentech/templates/django/forms/widgets/datetime.html rename to hypha/templates/django/forms/widgets/datetime.html diff --git a/opentech/templates/django/forms/widgets/input_option.html b/hypha/templates/django/forms/widgets/input_option.html similarity index 100% rename from opentech/templates/django/forms/widgets/input_option.html rename to hypha/templates/django/forms/widgets/input_option.html diff --git a/opentech/templates/django/forms/widgets/multiple_input.html b/hypha/templates/django/forms/widgets/multiple_input.html similarity index 100% rename from opentech/templates/django/forms/widgets/multiple_input.html rename to hypha/templates/django/forms/widgets/multiple_input.html diff --git a/opentech/templates/django/forms/widgets/select.html b/hypha/templates/django/forms/widgets/select.html similarity index 100% rename from opentech/templates/django/forms/widgets/select.html rename to hypha/templates/django/forms/widgets/select.html diff --git a/opentech/templates/includes/apply_button.html b/hypha/templates/includes/apply_button.html similarity index 100% rename from opentech/templates/includes/apply_button.html rename to hypha/templates/includes/apply_button.html diff --git a/opentech/templates/includes/call_to_action.html b/hypha/templates/includes/call_to_action.html similarity index 100% rename from opentech/templates/includes/call_to_action.html rename to hypha/templates/includes/call_to_action.html diff --git a/opentech/templates/includes/message_item.html b/hypha/templates/includes/message_item.html similarity index 100% rename from opentech/templates/includes/message_item.html rename to hypha/templates/includes/message_item.html diff --git a/opentech/templates/includes/messages.html b/hypha/templates/includes/messages.html similarity index 100% rename from opentech/templates/includes/messages.html rename to hypha/templates/includes/messages.html diff --git a/opentech/templates/includes/pagination.html b/hypha/templates/includes/pagination.html similarity index 100% rename from opentech/templates/includes/pagination.html rename to hypha/templates/includes/pagination.html diff --git a/opentech/templates/includes/relatedcontent.html b/hypha/templates/includes/relatedcontent.html similarity index 100% rename from opentech/templates/includes/relatedcontent.html rename to hypha/templates/includes/relatedcontent.html diff --git a/opentech/templates/includes/relatedcontent_card.html b/hypha/templates/includes/relatedcontent_card.html similarity index 100% rename from opentech/templates/includes/relatedcontent_card.html rename to hypha/templates/includes/relatedcontent_card.html diff --git a/opentech/templates/includes/share.html b/hypha/templates/includes/share.html similarity index 100% rename from opentech/templates/includes/share.html rename to hypha/templates/includes/share.html diff --git a/opentech/templates/includes/sprites.html b/hypha/templates/includes/sprites.html similarity index 100% rename from opentech/templates/includes/sprites.html rename to hypha/templates/includes/sprites.html diff --git a/opentech/templates/password_required.html b/hypha/templates/password_required.html similarity index 100% rename from opentech/templates/password_required.html rename to hypha/templates/password_required.html diff --git a/opentech/templates/styleguide.html b/hypha/templates/styleguide.html similarity index 100% rename from opentech/templates/styleguide.html rename to hypha/templates/styleguide.html diff --git a/opentech/urls.py b/hypha/urls.py similarity index 100% rename from opentech/urls.py rename to hypha/urls.py diff --git a/opentech/wsgi.py b/hypha/wsgi.py similarity index 100% rename from opentech/wsgi.py rename to hypha/wsgi.py