Extend members app: add filtering with django-filter, MemberFilter class, and initial view setup. Update URLs, templates, and dependencies for integration.

This commit is contained in:
2026-01-04 23:24:53 +01:00
parent e67ef526f4
commit 40ddab4627
14 changed files with 94 additions and 7 deletions

9
backend/urls.py Normal file
View File

@@ -0,0 +1,9 @@
from django.urls import include, path
from .views import index
app_name = "backend"
urlpatterns = [
path("", index, name="index"),
path("members/", include("backend.members.urls")),
]