diff --git a/aviary/__init__.py b/app/aviary/__init__.py similarity index 100% rename from aviary/__init__.py rename to app/aviary/__init__.py diff --git a/aviary/admin.py b/app/aviary/admin.py similarity index 100% rename from aviary/admin.py rename to app/aviary/admin.py diff --git a/aviary/apps.py b/app/aviary/apps.py similarity index 100% rename from aviary/apps.py rename to app/aviary/apps.py diff --git a/aviary/forms.py b/app/aviary/forms.py similarity index 100% rename from aviary/forms.py rename to app/aviary/forms.py diff --git a/aviary/migrations/0001_initial.py b/app/aviary/migrations/0001_initial.py similarity index 100% rename from aviary/migrations/0001_initial.py rename to app/aviary/migrations/0001_initial.py diff --git a/aviary/migrations/0002_alter_aviary_condition.py b/app/aviary/migrations/0002_alter_aviary_condition.py similarity index 100% rename from aviary/migrations/0002_alter_aviary_condition.py rename to app/aviary/migrations/0002_alter_aviary_condition.py diff --git a/aviary/migrations/0003_alter_aviary_condition.py b/app/aviary/migrations/0003_alter_aviary_condition.py similarity index 100% rename from aviary/migrations/0003_alter_aviary_condition.py rename to app/aviary/migrations/0003_alter_aviary_condition.py diff --git a/aviary/migrations/__init__.py b/app/aviary/migrations/__init__.py similarity index 100% rename from aviary/migrations/__init__.py rename to app/aviary/migrations/__init__.py diff --git a/aviary/models.py b/app/aviary/models.py similarity index 100% rename from aviary/models.py rename to app/aviary/models.py diff --git a/aviary/templates/aviary/aviary_all.html b/app/aviary/templates/aviary/aviary_all.html similarity index 100% rename from aviary/templates/aviary/aviary_all.html rename to app/aviary/templates/aviary/aviary_all.html diff --git a/aviary/templates/aviary/aviary_single.html b/app/aviary/templates/aviary/aviary_single.html similarity index 100% rename from aviary/templates/aviary/aviary_single.html rename to app/aviary/templates/aviary/aviary_single.html diff --git a/aviary/tests.py b/app/aviary/tests.py similarity index 100% rename from aviary/tests.py rename to app/aviary/tests.py diff --git a/aviary/urls.py b/app/aviary/urls.py similarity index 100% rename from aviary/urls.py rename to app/aviary/urls.py diff --git a/aviary/views.py b/app/aviary/views.py similarity index 100% rename from aviary/views.py rename to app/aviary/views.py diff --git a/bird/__init__.py b/app/bird/__init__.py similarity index 100% rename from bird/__init__.py rename to app/bird/__init__.py diff --git a/bird/admin.py b/app/bird/admin.py similarity index 100% rename from bird/admin.py rename to app/bird/admin.py diff --git a/bird/apps.py b/app/bird/apps.py similarity index 100% rename from bird/apps.py rename to app/bird/apps.py diff --git a/bird/forms.py b/app/bird/forms.py similarity index 100% rename from bird/forms.py rename to app/bird/forms.py diff --git a/bird/migrations/0001_initial.py b/app/bird/migrations/0001_initial.py similarity index 100% rename from bird/migrations/0001_initial.py rename to app/bird/migrations/0001_initial.py diff --git a/bird/migrations/__init__.py b/app/bird/migrations/__init__.py similarity index 100% rename from bird/migrations/__init__.py rename to app/bird/migrations/__init__.py diff --git a/bird/models.py b/app/bird/models.py similarity index 100% rename from bird/models.py rename to app/bird/models.py diff --git a/bird/templates/bird/bird_all.html b/app/bird/templates/bird/bird_all.html similarity index 100% rename from bird/templates/bird/bird_all.html rename to app/bird/templates/bird/bird_all.html diff --git a/bird/templates/bird/bird_create.html b/app/bird/templates/bird/bird_create.html similarity index 100% rename from bird/templates/bird/bird_create.html rename to app/bird/templates/bird/bird_create.html diff --git a/bird/templates/bird/bird_delete.html b/app/bird/templates/bird/bird_delete.html similarity index 100% rename from bird/templates/bird/bird_delete.html rename to app/bird/templates/bird/bird_delete.html diff --git a/bird/templates/bird/bird_help.html b/app/bird/templates/bird/bird_help.html similarity index 100% rename from bird/templates/bird/bird_help.html rename to app/bird/templates/bird/bird_help.html diff --git a/bird/templates/bird/bird_single.html b/app/bird/templates/bird/bird_single.html similarity index 100% rename from bird/templates/bird/bird_single.html rename to app/bird/templates/bird/bird_single.html diff --git a/bird/tests.py b/app/bird/tests.py similarity index 100% rename from bird/tests.py rename to app/bird/tests.py diff --git a/bird/urls.py b/app/bird/urls.py similarity index 100% rename from bird/urls.py rename to app/bird/urls.py diff --git a/bird/views.py b/app/bird/views.py similarity index 100% rename from bird/views.py rename to app/bird/views.py diff --git a/core/__init__.py b/app/core/__init__.py similarity index 100% rename from core/__init__.py rename to app/core/__init__.py diff --git a/core/asgi.py b/app/core/asgi.py similarity index 100% rename from core/asgi.py rename to app/core/asgi.py diff --git a/core/settings.py b/app/core/settings.py similarity index 97% rename from core/settings.py rename to app/core/settings.py index b217010..9e2e909 100644 --- a/core/settings.py +++ b/app/core/settings.py @@ -51,6 +51,10 @@ INSTALLED_APPS = [ "crispy_bootstrap5", "crispy_forms", # ----------------------------------- + # Jazzmin + # ----------------------------------- + "jazzmin", + # ----------------------------------- # My Apps # ----------------------------------- "aviary", diff --git a/core/urls.py b/app/core/urls.py similarity index 100% rename from core/urls.py rename to app/core/urls.py diff --git a/core/wsgi.py b/app/core/wsgi.py similarity index 100% rename from core/wsgi.py rename to app/core/wsgi.py diff --git a/fixtures/data.json b/app/fixtures/data.json similarity index 100% rename from fixtures/data.json rename to app/fixtures/data.json diff --git a/manage.py b/app/manage.py similarity index 100% rename from manage.py rename to app/manage.py diff --git a/requirements.txt b/app/requirements.txt similarity index 100% rename from requirements.txt rename to app/requirements.txt diff --git a/rescuer/__init__.py b/app/rescuer/__init__.py similarity index 100% rename from rescuer/__init__.py rename to app/rescuer/__init__.py diff --git a/rescuer/admin.py b/app/rescuer/admin.py similarity index 100% rename from rescuer/admin.py rename to app/rescuer/admin.py diff --git a/rescuer/apps.py b/app/rescuer/apps.py similarity index 100% rename from rescuer/apps.py rename to app/rescuer/apps.py diff --git a/rescuer/forms.py b/app/rescuer/forms.py similarity index 100% rename from rescuer/forms.py rename to app/rescuer/forms.py diff --git a/rescuer/migrations/0001_initial.py b/app/rescuer/migrations/0001_initial.py similarity index 100% rename from rescuer/migrations/0001_initial.py rename to app/rescuer/migrations/0001_initial.py diff --git a/rescuer/migrations/__init__.py b/app/rescuer/migrations/__init__.py similarity index 100% rename from rescuer/migrations/__init__.py rename to app/rescuer/migrations/__init__.py diff --git a/rescuer/models.py b/app/rescuer/models.py similarity index 100% rename from rescuer/models.py rename to app/rescuer/models.py diff --git a/rescuer/templates/rescuer/rescuer_all.html b/app/rescuer/templates/rescuer/rescuer_all.html similarity index 100% rename from rescuer/templates/rescuer/rescuer_all.html rename to app/rescuer/templates/rescuer/rescuer_all.html diff --git a/rescuer/templates/rescuer/rescuer_create.html b/app/rescuer/templates/rescuer/rescuer_create.html similarity index 100% rename from rescuer/templates/rescuer/rescuer_create.html rename to app/rescuer/templates/rescuer/rescuer_create.html diff --git a/rescuer/templates/rescuer/rescuer_delete.html b/app/rescuer/templates/rescuer/rescuer_delete.html similarity index 100% rename from rescuer/templates/rescuer/rescuer_delete.html rename to app/rescuer/templates/rescuer/rescuer_delete.html diff --git a/rescuer/templates/rescuer/rescuer_edit.html b/app/rescuer/templates/rescuer/rescuer_edit.html similarity index 100% rename from rescuer/templates/rescuer/rescuer_edit.html rename to app/rescuer/templates/rescuer/rescuer_edit.html diff --git a/rescuer/templates/rescuer/rescuer_single.html b/app/rescuer/templates/rescuer/rescuer_single.html similarity index 100% rename from rescuer/templates/rescuer/rescuer_single.html rename to app/rescuer/templates/rescuer/rescuer_single.html diff --git a/rescuer/tests.py b/app/rescuer/tests.py similarity index 100% rename from rescuer/tests.py rename to app/rescuer/tests.py diff --git a/rescuer/urls.py b/app/rescuer/urls.py similarity index 100% rename from rescuer/urls.py rename to app/rescuer/urls.py diff --git a/rescuer/views.py b/app/rescuer/views.py similarity index 100% rename from rescuer/views.py rename to app/rescuer/views.py diff --git a/sites/__init__.py b/app/sites/__init__.py similarity index 100% rename from sites/__init__.py rename to app/sites/__init__.py diff --git a/sites/admin.py b/app/sites/admin.py similarity index 100% rename from sites/admin.py rename to app/sites/admin.py diff --git a/sites/apps.py b/app/sites/apps.py similarity index 100% rename from sites/apps.py rename to app/sites/apps.py diff --git a/sites/migrations/__init__.py b/app/sites/migrations/__init__.py similarity index 100% rename from sites/migrations/__init__.py rename to app/sites/migrations/__init__.py diff --git a/sites/models.py b/app/sites/models.py similarity index 100% rename from sites/models.py rename to app/sites/models.py diff --git a/sites/templates/sites/index.html b/app/sites/templates/sites/index.html similarity index 100% rename from sites/templates/sites/index.html rename to app/sites/templates/sites/index.html diff --git a/sites/tests.py b/app/sites/tests.py similarity index 100% rename from sites/tests.py rename to app/sites/tests.py diff --git a/sites/urls.py b/app/sites/urls.py similarity index 100% rename from sites/urls.py rename to app/sites/urls.py diff --git a/sites/views.py b/app/sites/views.py similarity index 100% rename from sites/views.py rename to app/sites/views.py diff --git a/static/css/.gitkeep b/app/static/css/.gitkeep similarity index 100% rename from static/css/.gitkeep rename to app/static/css/.gitkeep diff --git a/static/css/bootstrap.min.css b/app/static/css/bootstrap.min.css similarity index 100% rename from static/css/bootstrap.min.css rename to app/static/css/bootstrap.min.css diff --git a/static/css/style.css b/app/static/css/style.css similarity index 100% rename from static/css/style.css rename to app/static/css/style.css diff --git a/static/img/.gitkeep b/app/static/img/.gitkeep similarity index 100% rename from static/img/.gitkeep rename to app/static/img/.gitkeep diff --git a/static/img/WildvogelhilfeJena_Logo_1200x1200_V0.eps b/app/static/img/WildvogelhilfeJena_Logo_1200x1200_V0.eps similarity index 100% rename from static/img/WildvogelhilfeJena_Logo_1200x1200_V0.eps rename to app/static/img/WildvogelhilfeJena_Logo_1200x1200_V0.eps diff --git a/static/img/favicon.ico b/app/static/img/favicon.ico similarity index 100% rename from static/img/favicon.ico rename to app/static/img/favicon.ico diff --git a/static/img/favicon_small.ico b/app/static/img/favicon_small.ico similarity index 100% rename from static/img/favicon_small.ico rename to app/static/img/favicon_small.ico diff --git a/static/img/logo.png b/app/static/img/logo.png similarity index 100% rename from static/img/logo.png rename to app/static/img/logo.png diff --git a/static/img/logo_medium.png b/app/static/img/logo_medium.png similarity index 100% rename from static/img/logo_medium.png rename to app/static/img/logo_medium.png diff --git a/static/img/signal-2023-06-09-222100_004.png b/app/static/img/signal-2023-06-09-222100_004.png similarity index 100% rename from static/img/signal-2023-06-09-222100_004.png rename to app/static/img/signal-2023-06-09-222100_004.png diff --git a/static/img/signal-2023-06-09-222307_004.png b/app/static/img/signal-2023-06-09-222307_004.png similarity index 100% rename from static/img/signal-2023-06-09-222307_004.png rename to app/static/img/signal-2023-06-09-222307_004.png diff --git a/static/img/wvh.png b/app/static/img/wvh.png similarity index 100% rename from static/img/wvh.png rename to app/static/img/wvh.png diff --git a/static/img/wvhLogo.svg b/app/static/img/wvhLogo.svg similarity index 100% rename from static/img/wvhLogo.svg rename to app/static/img/wvhLogo.svg diff --git a/static/img/wvhLogo12001200300x.png b/app/static/img/wvhLogo12001200300x.png similarity index 100% rename from static/img/wvhLogo12001200300x.png rename to app/static/img/wvhLogo12001200300x.png diff --git a/static/js/bird.js b/app/static/js/bird.js similarity index 100% rename from static/js/bird.js rename to app/static/js/bird.js diff --git a/static/js/bootstrap.bundle.min.js b/app/static/js/bootstrap.bundle.min.js similarity index 100% rename from static/js/bootstrap.bundle.min.js rename to app/static/js/bootstrap.bundle.min.js diff --git a/static/js/find_circumstances.js b/app/static/js/find_circumstances.js similarity index 100% rename from static/js/find_circumstances.js rename to app/static/js/find_circumstances.js diff --git a/templates/account/account_inactive.html b/app/templates/account/account_inactive.html similarity index 100% rename from templates/account/account_inactive.html rename to app/templates/account/account_inactive.html diff --git a/templates/account/base.html b/app/templates/account/base.html similarity index 100% rename from templates/account/base.html rename to app/templates/account/base.html diff --git a/templates/account/email.html b/app/templates/account/email.html similarity index 100% rename from templates/account/email.html rename to app/templates/account/email.html diff --git a/templates/account/email/base_message.txt b/app/templates/account/email/base_message.txt similarity index 100% rename from templates/account/email/base_message.txt rename to app/templates/account/email/base_message.txt diff --git a/templates/account/email/email_confirmation_message.txt b/app/templates/account/email/email_confirmation_message.txt similarity index 100% rename from templates/account/email/email_confirmation_message.txt rename to app/templates/account/email/email_confirmation_message.txt diff --git a/templates/account/email/email_confirmation_signup_message.txt b/app/templates/account/email/email_confirmation_signup_message.txt similarity index 100% rename from templates/account/email/email_confirmation_signup_message.txt rename to app/templates/account/email/email_confirmation_signup_message.txt diff --git a/templates/account/email/email_confirmation_signup_subject.txt b/app/templates/account/email/email_confirmation_signup_subject.txt similarity index 100% rename from templates/account/email/email_confirmation_signup_subject.txt rename to app/templates/account/email/email_confirmation_signup_subject.txt diff --git a/templates/account/email/email_confirmation_subject.txt b/app/templates/account/email/email_confirmation_subject.txt similarity index 100% rename from templates/account/email/email_confirmation_subject.txt rename to app/templates/account/email/email_confirmation_subject.txt diff --git a/templates/account/email/password_reset_key_message.txt b/app/templates/account/email/password_reset_key_message.txt similarity index 100% rename from templates/account/email/password_reset_key_message.txt rename to app/templates/account/email/password_reset_key_message.txt diff --git a/templates/account/email/password_reset_key_subject.txt b/app/templates/account/email/password_reset_key_subject.txt similarity index 100% rename from templates/account/email/password_reset_key_subject.txt rename to app/templates/account/email/password_reset_key_subject.txt diff --git a/templates/account/email/unknown_account_message.txt b/app/templates/account/email/unknown_account_message.txt similarity index 100% rename from templates/account/email/unknown_account_message.txt rename to app/templates/account/email/unknown_account_message.txt diff --git a/templates/account/email/unknown_account_subject.txt b/app/templates/account/email/unknown_account_subject.txt similarity index 100% rename from templates/account/email/unknown_account_subject.txt rename to app/templates/account/email/unknown_account_subject.txt diff --git a/templates/account/email_confirm.html b/app/templates/account/email_confirm.html similarity index 100% rename from templates/account/email_confirm.html rename to app/templates/account/email_confirm.html diff --git a/templates/account/login.html b/app/templates/account/login.html similarity index 100% rename from templates/account/login.html rename to app/templates/account/login.html diff --git a/templates/account/logout.html b/app/templates/account/logout.html similarity index 100% rename from templates/account/logout.html rename to app/templates/account/logout.html diff --git a/templates/account/messages/cannot_delete_primary_email.txt b/app/templates/account/messages/cannot_delete_primary_email.txt similarity index 100% rename from templates/account/messages/cannot_delete_primary_email.txt rename to app/templates/account/messages/cannot_delete_primary_email.txt diff --git a/templates/account/messages/email_confirmation_sent.txt b/app/templates/account/messages/email_confirmation_sent.txt similarity index 100% rename from templates/account/messages/email_confirmation_sent.txt rename to app/templates/account/messages/email_confirmation_sent.txt diff --git a/templates/account/messages/email_confirmed.txt b/app/templates/account/messages/email_confirmed.txt similarity index 100% rename from templates/account/messages/email_confirmed.txt rename to app/templates/account/messages/email_confirmed.txt diff --git a/templates/account/messages/email_deleted.txt b/app/templates/account/messages/email_deleted.txt similarity index 100% rename from templates/account/messages/email_deleted.txt rename to app/templates/account/messages/email_deleted.txt diff --git a/templates/account/messages/logged_in.txt b/app/templates/account/messages/logged_in.txt similarity index 100% rename from templates/account/messages/logged_in.txt rename to app/templates/account/messages/logged_in.txt diff --git a/templates/account/messages/logged_out.txt b/app/templates/account/messages/logged_out.txt similarity index 100% rename from templates/account/messages/logged_out.txt rename to app/templates/account/messages/logged_out.txt diff --git a/templates/account/messages/password_changed.txt b/app/templates/account/messages/password_changed.txt similarity index 100% rename from templates/account/messages/password_changed.txt rename to app/templates/account/messages/password_changed.txt diff --git a/templates/account/messages/password_set.txt b/app/templates/account/messages/password_set.txt similarity index 100% rename from templates/account/messages/password_set.txt rename to app/templates/account/messages/password_set.txt diff --git a/templates/account/messages/primary_email_set.txt b/app/templates/account/messages/primary_email_set.txt similarity index 100% rename from templates/account/messages/primary_email_set.txt rename to app/templates/account/messages/primary_email_set.txt diff --git a/templates/account/messages/unverified_primary_email.txt b/app/templates/account/messages/unverified_primary_email.txt similarity index 100% rename from templates/account/messages/unverified_primary_email.txt rename to app/templates/account/messages/unverified_primary_email.txt diff --git a/templates/account/password_change.html b/app/templates/account/password_change.html similarity index 100% rename from templates/account/password_change.html rename to app/templates/account/password_change.html diff --git a/templates/account/password_reset.html b/app/templates/account/password_reset.html similarity index 100% rename from templates/account/password_reset.html rename to app/templates/account/password_reset.html diff --git a/templates/account/password_reset_done.html b/app/templates/account/password_reset_done.html similarity index 100% rename from templates/account/password_reset_done.html rename to app/templates/account/password_reset_done.html diff --git a/templates/account/password_reset_from_key.html b/app/templates/account/password_reset_from_key.html similarity index 100% rename from templates/account/password_reset_from_key.html rename to app/templates/account/password_reset_from_key.html diff --git a/templates/account/password_reset_from_key_done.html b/app/templates/account/password_reset_from_key_done.html similarity index 100% rename from templates/account/password_reset_from_key_done.html rename to app/templates/account/password_reset_from_key_done.html diff --git a/templates/account/password_set.html b/app/templates/account/password_set.html similarity index 100% rename from templates/account/password_set.html rename to app/templates/account/password_set.html diff --git a/templates/account/signup.html b/app/templates/account/signup.html similarity index 100% rename from templates/account/signup.html rename to app/templates/account/signup.html diff --git a/templates/account/signup_closed.html b/app/templates/account/signup_closed.html similarity index 100% rename from templates/account/signup_closed.html rename to app/templates/account/signup_closed.html diff --git a/templates/account/snippets/already_logged_in.html b/app/templates/account/snippets/already_logged_in.html similarity index 100% rename from templates/account/snippets/already_logged_in.html rename to app/templates/account/snippets/already_logged_in.html diff --git a/templates/account/verification_sent.html b/app/templates/account/verification_sent.html similarity index 100% rename from templates/account/verification_sent.html rename to app/templates/account/verification_sent.html diff --git a/templates/account/verified_email_required.html b/app/templates/account/verified_email_required.html similarity index 100% rename from templates/account/verified_email_required.html rename to app/templates/account/verified_email_required.html diff --git a/templates/base.html b/app/templates/base.html similarity index 100% rename from templates/base.html rename to app/templates/base.html diff --git a/templates/partials/_footer.html b/app/templates/partials/_footer.html similarity index 100% rename from templates/partials/_footer.html rename to app/templates/partials/_footer.html diff --git a/templates/partials/_navbar.html b/app/templates/partials/_navbar.html similarity index 100% rename from templates/partials/_navbar.html rename to app/templates/partials/_navbar.html