From 6a8515358b0e34882bc808187f2869d8bfea65e4 Mon Sep 17 00:00:00 2001 From: Ben Sturmfels Date: Tue, 7 May 2024 09:45:19 +1000 Subject: [PATCH] Merge "supporter" and "supporters" apps It's a little confusing having both a "supporter" and "supporters" app. This is a fairly minor change to move the sustainer banner urls/views into the existing "supporters" app. The functionality isn't directly related, but it is all about sustainers. --- conservancy/supporter/__init__.py | 0 conservancy/{supporter => supporters}/urls.py | 0 conservancy/{supporter => supporters}/views.py | 0 conservancy/urls.py | 2 +- 4 files changed, 1 insertion(+), 1 deletion(-) delete mode 100644 conservancy/supporter/__init__.py rename conservancy/{supporter => supporters}/urls.py (100%) rename conservancy/{supporter => supporters}/views.py (100%) diff --git a/conservancy/supporter/__init__.py b/conservancy/supporter/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/conservancy/supporter/urls.py b/conservancy/supporters/urls.py similarity index 100% rename from conservancy/supporter/urls.py rename to conservancy/supporters/urls.py diff --git a/conservancy/supporter/views.py b/conservancy/supporters/views.py similarity index 100% rename from conservancy/supporter/views.py rename to conservancy/supporters/views.py diff --git a/conservancy/urls.py b/conservancy/urls.py index 0c0a8080..97588605 100644 --- a/conservancy/urls.py +++ b/conservancy/urls.py @@ -43,7 +43,7 @@ urlpatterns = [ path('news/', include('conservancy.news.urls')), path('sponsors/', sponsors.view), path('sponsors/index.html', sponsors.view), - path('sustainer/', include('conservancy.supporter.urls')), + path('sustainer/', include('conservancy.supporters.urls')), path('usethesource/', include('conservancy.usethesource.urls')), # Directories of templates and files