diff --git a/accounting/__init__.py b/parked_apps/accounting/__init__.py similarity index 100% rename from accounting/__init__.py rename to parked_apps/accounting/__init__.py diff --git a/accounting/admin.py b/parked_apps/accounting/admin.py similarity index 100% rename from accounting/admin.py rename to parked_apps/accounting/admin.py diff --git a/accounting/apps.py b/parked_apps/accounting/apps.py similarity index 100% rename from accounting/apps.py rename to parked_apps/accounting/apps.py diff --git a/accounting/migrations/0001_initial.py b/parked_apps/accounting/migrations/0001_initial.py similarity index 100% rename from accounting/migrations/0001_initial.py rename to parked_apps/accounting/migrations/0001_initial.py diff --git a/accounting/migrations/__init__.py b/parked_apps/accounting/migrations/__init__.py similarity index 100% rename from accounting/migrations/__init__.py rename to parked_apps/accounting/migrations/__init__.py diff --git a/accounting/models.py b/parked_apps/accounting/models.py similarity index 100% rename from accounting/models.py rename to parked_apps/accounting/models.py diff --git a/accounting/tests.py b/parked_apps/accounting/tests.py similarity index 100% rename from accounting/tests.py rename to parked_apps/accounting/tests.py diff --git a/membership/__init__.py b/parked_apps/membership/__init__.py similarity index 100% rename from membership/__init__.py rename to parked_apps/membership/__init__.py diff --git a/membership/admin.py b/parked_apps/membership/admin.py similarity index 100% rename from membership/admin.py rename to parked_apps/membership/admin.py diff --git a/membership/apps.py b/parked_apps/membership/apps.py similarity index 100% rename from membership/apps.py rename to parked_apps/membership/apps.py diff --git a/membership/migrations/0001_initial.py b/parked_apps/membership/migrations/0001_initial.py similarity index 100% rename from membership/migrations/0001_initial.py rename to parked_apps/membership/migrations/0001_initial.py diff --git a/membership/migrations/__init__.py b/parked_apps/membership/migrations/__init__.py similarity index 100% rename from membership/migrations/__init__.py rename to parked_apps/membership/migrations/__init__.py diff --git a/membership/models.py b/parked_apps/membership/models.py similarity index 100% rename from membership/models.py rename to parked_apps/membership/models.py diff --git a/users/__init__.py b/parked_apps/users/__init__.py similarity index 100% rename from users/__init__.py rename to parked_apps/users/__init__.py diff --git a/users/admin.py b/parked_apps/users/admin.py similarity index 100% rename from users/admin.py rename to parked_apps/users/admin.py diff --git a/users/apps.py b/parked_apps/users/apps.py similarity index 100% rename from users/apps.py rename to parked_apps/users/apps.py diff --git a/users/forms.py b/parked_apps/users/forms.py similarity index 100% rename from users/forms.py rename to parked_apps/users/forms.py diff --git a/users/migrations/0001_initial.py b/parked_apps/users/migrations/0001_initial.py similarity index 100% rename from users/migrations/0001_initial.py rename to parked_apps/users/migrations/0001_initial.py diff --git a/users/migrations/__init__.py b/parked_apps/users/migrations/__init__.py similarity index 100% rename from users/migrations/__init__.py rename to parked_apps/users/migrations/__init__.py diff --git a/users/models.py b/parked_apps/users/models.py similarity index 100% rename from users/models.py rename to parked_apps/users/models.py diff --git a/users/templates/users/logged_out.html b/parked_apps/users/templates/users/logged_out.html similarity index 100% rename from users/templates/users/logged_out.html rename to parked_apps/users/templates/users/logged_out.html diff --git a/users/templates/users/login.html b/parked_apps/users/templates/users/login.html similarity index 100% rename from users/templates/users/login.html rename to parked_apps/users/templates/users/login.html diff --git a/users/templates/users/password_change_done.html b/parked_apps/users/templates/users/password_change_done.html similarity index 100% rename from users/templates/users/password_change_done.html rename to parked_apps/users/templates/users/password_change_done.html diff --git a/users/templates/users/password_change_form.html b/parked_apps/users/templates/users/password_change_form.html similarity index 100% rename from users/templates/users/password_change_form.html rename to parked_apps/users/templates/users/password_change_form.html diff --git a/users/templates/users/password_reset_complete.html b/parked_apps/users/templates/users/password_reset_complete.html similarity index 100% rename from users/templates/users/password_reset_complete.html rename to parked_apps/users/templates/users/password_reset_complete.html diff --git a/users/templates/users/password_reset_confirm.html b/parked_apps/users/templates/users/password_reset_confirm.html similarity index 100% rename from users/templates/users/password_reset_confirm.html rename to parked_apps/users/templates/users/password_reset_confirm.html diff --git a/users/templates/users/password_reset_done.html b/parked_apps/users/templates/users/password_reset_done.html similarity index 100% rename from users/templates/users/password_reset_done.html rename to parked_apps/users/templates/users/password_reset_done.html diff --git a/users/templates/users/password_reset_email.html b/parked_apps/users/templates/users/password_reset_email.html similarity index 100% rename from users/templates/users/password_reset_email.html rename to parked_apps/users/templates/users/password_reset_email.html diff --git a/users/templates/users/password_reset_form.html b/parked_apps/users/templates/users/password_reset_form.html similarity index 100% rename from users/templates/users/password_reset_form.html rename to parked_apps/users/templates/users/password_reset_form.html diff --git a/users/templates/users/signup.html b/parked_apps/users/templates/users/signup.html similarity index 100% rename from users/templates/users/signup.html rename to parked_apps/users/templates/users/signup.html diff --git a/users/templates/users/signup_confirm.html b/parked_apps/users/templates/users/signup_confirm.html similarity index 100% rename from users/templates/users/signup_confirm.html rename to parked_apps/users/templates/users/signup_confirm.html diff --git a/users/urls.py b/parked_apps/users/urls.py similarity index 100% rename from users/urls.py rename to parked_apps/users/urls.py diff --git a/users/views.py b/parked_apps/users/views.py similarity index 100% rename from users/views.py rename to parked_apps/users/views.py diff --git a/project/settings/base.py b/project/settings/base.py index fcbda74..2fac397 100644 --- a/project/settings/base.py +++ b/project/settings/base.py @@ -33,9 +33,6 @@ INSTALLED_APPS = [ "django.contrib.messages", "django.contrib.staticfiles", "django.contrib.sites", - "users", - "accounting", - "membership", ] MIDDLEWARE = [ @@ -100,8 +97,6 @@ AUTH_PASSWORD_VALIDATORS = [ }, ] -AUTH_USER_MODEL = "users.User" - # Internationalization # https://docs.djangoproject.com/en/2.0/topics/i18n/ diff --git a/project/templates/base.html b/project/templates/base.html index a6aaf00..b55ec83 100644 --- a/project/templates/base.html +++ b/project/templates/base.html @@ -13,11 +13,11 @@